@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Poppins:wght@400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f0f8f0 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    padding: 30px 20px 20px;
}

.logo {
    max-width: 500px;
    margin: 0 auto 10px;
}

.logo img {
    width: 100%;
    max-width: 450px;
    height: auto;
}

.website-url {
    color: #666;
    font-size: 14px;
    margin-top: 10px;
}

.hero {
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 68px;
    color: #333;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero .leaf-icon {
    display: inline-block;
    color: #4a9d5f;
    font-size: 56px;
}

.hero p {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    color: #555;
    margin-bottom: 10px;
    font-weight: 500;
}

.hero .subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #666;
}

.coming-soon-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4a9d5f 0%, #2d6e3e 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 24px;
    font-weight: bold;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(74, 157, 95, 0.3);
}

.treatments {
    background: linear-gradient(135deg, rgba(74, 157, 95, 0.9) 0%, rgba(45, 110, 62, 0.95) 100%);
    color: white;
    padding: 50px 20px;
    margin: 40px 0;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.treatments::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

.treatments h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    position: relative;
}

.treatment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.treatment-item {
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 22px;
    font-weight: 700;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.treatment-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.leaf-bullet {
    color: #90ee90;
    font-size: 24px;
}

.doctor-section {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 50px 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.doctor-image {
    flex: 0 0 300px;
    text-align: center;
}

.doctor-image img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid #4a9d5f;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.doctor-info {
    flex: 1;
    min-width: 300px;
}

.doctor-info h3 {
    font-size: 36px;
    color: #2d6e3e;
    margin-bottom: 15px;
    font-weight: 700;
}

.doctor-info .credentials {
    font-size: 16px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-info {
    margin-top: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
    font-size: 20px;
    color: #2d6e3e;
    font-weight: 600;
    line-height: 1;
}

.contact-item .icon {
    font-size: 20px;
    width: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item.email {
    font-size: 17px;
}

.contact-item a {
    color: #2d6e3e;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #4a9d5f;
}

footer {
    text-align: center;
    padding: 30px 20px;
    background: #2d6e3e;
    color: white;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 42px;
    }
    
    .hero p {
        font-size: 18px;
    }

    .logo h1 {
        font-size: 52px;
    }

    .logo h2 {
        font-size: 32px;
    }

    .treatments h2 {
        font-size: 32px;
    }

    .treatment-item {
        font-size: 18px;
    }

    .doctor-section {
        flex-direction: column;
        text-align: center;
    }

    .doctor-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-item {
        justify-content: center;
    }
}
```

**Step 3: Create the folder structure**

Create this folder structure:
```
your-website/
├── index.html
├── styles.css
└── images/
    ├── logo.png (your DUA Ayurveda logo)
    └── doctor.png (Dr. Shabana's photo)