/* Base Styles */
:root {
    --primary-color: #5a4b3f;
    --secondary-color: #e6d7c7;
    --accent-color: #d9c3a9;
    --light-accent: #f5f0e8;
    --text-color: #333;
    --white: #ffffff;
    --border-radius: 10px;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

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

h1, h2, h3 {
     font-family: 'Lora', serif;
    color: var(--primary-color);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

a {
 font-family: 'Open Sans', sans-serif;

    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0f1e1a;
}

/* Button Style */
.btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.cta-center {
    text-align: center;
    margin-top: 2rem;
}

/* Header */
.main-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-header h1 {
    font-size: 1.8rem;
    margin: 0;
}

.main-header nav ul {
    display: flex;
    list-style: none;
    margin: 0;
}

.main-header nav ul li {
    margin-left: 1.5rem;
}

.main-header nav ul li a {
    color: var(--primary-color);
    font-weight: 500;
}

.main-header nav ul li a:hover {
    color: #0f1e1a;
}

/* Hero Section */


.hero {
 display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to right, rgba(230, 215, 199, 0.2), rgba(230, 215, 199, 0.05)), url('images/ilhan-hero2.jpg');
    background-size: cover;
    background-position: right center;
    height: 70vh;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
max-width: 1200px;
    margin: 0 auto 30px ;
    padding: 0 20px;
}

@media (max-width: 1020px) {
 .hero {
    display: none;
  }
}


.hero-content {
    max-width: 50%;
    padding-left: 5%;
    color: #4e3c2f;
}

.hero-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #4e3c2f;
 text-shadow: 1px 1px 1px #605448;
  color: white;

}

.hero-content .btn {
    background-color: #4e3c2f;
    color: #fff;
    padding: 12px 28px;
    font-size: 1rem;
    border-radius: 40px;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    border: none;
    cursor: pointer;
    text-decoration: none;

}

.hero-content .btn:hover
/* Profile Section */
.profile {
    padding: 5rem 0;
    background-color: var(--light-accent);
}

.profile-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.profile-image {
    flex: 0 0 300px;
}

.profile-image img {
    width: 100%;
    border-radius: 50%;
    border: 5px solid var(--secondary-color);
}

.profile-details {
    flex: 1;
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.credential-item {
    background-color: var(--secondary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.credential-item .icon {
    font-size: 1.2rem;
}

/* Services Section */
.services {
    padding: 5rem 0;
    text-align: center;
}

.services h2 {
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-card {
    background-color: var(--light-accent);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Approach Section */
.approach {
    padding: 5rem 0;
    background-color: var(--light-accent);
}

.approach p {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
}

.testimonials {
    margin-top: 3rem;
}

.testimonials h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

blockquote {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}

blockquote::before {
    content: '"';
    font-family: Georgia, serif;
    font-size: 5rem;
    position: absolute;
    top: -20px;
    left: 10px;
    color: var(--accent-color);
    opacity: 0.7;
}

blockquote p {
    margin-bottom: 0.5rem;
    text-align: left;
}

blockquote cite {
    font-style: italic;
    font-weight: 500;
}

/* Blog Section */
.blog {
    padding: 5rem 0;
}

.blog-card {
    background-color: var(--light-accent);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.blog-card h3 {
    margin-bottom: 1rem;
}

.blog-card h3 a {
    color: var(--primary-color);
    text-decoration: none;
}

.blog-card h3 a:hover {
    text-decoration: underline;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: var(--light-accent);
    text-align: center;
}

.contact p {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.contact-info {
    max-width: 400px;
    margin: 0 auto;
}

.contact-info p {
    margin-bottom: 1rem;
}

.contact-info .btn {
    margin-top: 1.5rem;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

/* Anxiety Guide Page Styles */
#introduction, #causes, #common-causes, #self-care, #help, #when-to-seek-help {
    padding: 2rem 0;
    max-width: 800px;
    margin: 0 auto;
}

#introduction h2, #causes h2, #common-causes h2, #self-care h2, #help h2, #when-to-seek-help h2 {
    margin-bottom: 1.5rem;
}

#causes h3, #common-causes h3, #self-care h3, #help h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.cta-button:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Responsive Styles */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .profile-content {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-image {
        flex: 0 0 250px;
    }
    
    .credentials {
        justify-content: center;
    }
    
    .main-header .container {
        flex-direction: column;
    }
    
    .main-header nav {
        margin-top: 1rem;
    }
    
    .main-header nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .main-header nav ul li {
        margin: 0.5rem;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .service-card, .blog-card, blockquote {
        padding: 1.5rem;
    }
}