/* Reset some default styles */
body, h1, h2, h3, p, ul, header, main, footer {
    padding: 5px;
}

/* Basic styles */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header styles */
header {
    background-color: #c7bebe;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    border-bottom: 1px solid #ccc;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
}

nav ul {
    list-style-type: none;
    display: flex;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: #333;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ff6347;
}

/* Hero section styles */
.hero {
    background-image: url('one\ more\ eye.jpg');
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
}

/* Hero content styles */
.hero-content {
    max-width: 800px;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Features section styles */
.features {
    display: flex;
    justify-content: space-between;
    padding: 2rem;
}

.feature {
    text-align: center;
    max-width: 300px;
}
.feature :hover {
    transform: scale(1.1);
}

.feature img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* CTA button styles */
.cta-button {
    text-align: center;
    margin: 2rem 0;
}

.btn {
    display: inline-block;
    background-color: #ff6347;
    color: #fff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #e65c4f;
}

/* Footer styles */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem;
}
/* ... (existing styles) ... */

/* ... (existing styles) ... */

/* About section styles */
.about {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.about h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.about h2 {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.about-content {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    background-color: rgb(183, 201, 207);
}

.image-container {
    position: relative;
    max-width: 300px;
    margin-right: 2rem;
    overflow: hidden;
}

.about-image {
    max-width: 100%;
    transition: transform 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .about-image {
    transform: scale(1.1);
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.about h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.how-it-works {
    list-style-type: none;
    counter-reset: item;
    margin-left: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.how-it-works li {
    counter-increment: item;
    width: 30%;
    margin-bottom: 2rem;
    text-align: center;
}

.step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-dr-section .about-content {
    text-align: justify; /* Justify text to occupy full width */
}