/* Base Styles */
:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: #d4af37;
    --text-color: #333333;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #707070;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--secondary-color);
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

h5 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

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

section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header .vision-quote {
    max-width: 800px;
    margin: 20px auto 0;
    padding: 15px 0;
    font-size: 1.25rem;
}

.about .section-header {
    text-align: left;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.about .section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.about .section-header h2::after {
    margin: 15px 0 0;
    width: 100px;
    background: linear-gradient(90deg, #1a6b54 0%, #d4af37 100%);
}

/* Add responsive fixes for the About section */
@media (max-width: 768px) {
    .about {
        padding: 80px 0;
    }
    
    .about .section-header,
    .about-text {
        text-align: center;
        padding: 0 15px;
    }
    
    .about-text h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-text p {
        max-width: 100%;
    }
    
    .about-bullets {
        grid-template-columns: 1fr;
    }
}

.section-header h2 {
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 15px auto 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 14px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: var(--transition);
}

.btn-primary {
    color: var(--secondary-color);
    border: none;
}

.btn-primary::before {
    background: linear-gradient(135deg, #1a6b54 0%, #d4af37 100%);
}

.btn-primary:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover::before {
    background: linear-gradient(135deg, #d4af37 0%, #1a6b54 100%);
}

.btn-secondary {
    color: var(--primary-color);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.btn-secondary::before {
    background: linear-gradient(135deg, #1a6b54 0%, #d4af37 100%);
    margin: -2px;
    border-radius: inherit;
    z-index: -1;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: var(--secondary-color);
    border-radius: 48px;
    z-index: -1;
    transition: var(--transition);
}

.btn-secondary:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-secondary:hover::after {
    background: transparent;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--secondary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
    height: 80px;
    display: flex;
    align-items: center;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    margin-left: 30px;
}

.header-btn {
    padding: 10px 24px;
    font-size: 14px;
    white-space: nowrap;
    background: linear-gradient(135deg, #1a6b54 0%, #d4af37 100%);
    color: var(--secondary-color);
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    max-width: 1200px;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 65px;
    width: auto;
    margin: 0;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Unified Contact Us button styling */
.nav-cta {
    display: flex;
    align-items: center;
}

.nav-cta .btn {
    padding: 10px 24px;
    font-size: 14px;
    white-space: nowrap;
    background: linear-gradient(135deg, #1a6b54 0%, #d4af37 100%);
    color: var(--secondary-color);
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-links li {
    margin: 0 20px;
}

.nav-links a {
    font-weight: 600;
    position: relative;
    padding: 5px 0;
    font-size: 15px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1000;
    position: relative;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
    height: 85vh; /* Reduced from 100vh to 85vh to cut at the end of the labcoat */
    background-color: var(--primary-color);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center; /* Center content horizontally */
    position: relative;
    background-image: url('../images/fertility clinic Innovators 3.png');
    background-size: cover;
    background-position: center top; /* Changed to center top to ensure we see the top part of the image */
    background-attachment: scroll; /* Changed from fixed for better mobile experience */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    padding-top: 0; /* Remove padding and handle it in media queries */
    overflow: hidden; /* Prevent content from spilling outside */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.hero-content {
    max-width: 100%;
    text-align: center;
    margin: 0;
    padding: 160px 20px 0; /* Further increased top padding to move content down more */
    position: relative;
    z-index: 2;
    width: 100%;
    box-sizing: border-box;
    background-color: transparent;
}

.hero-content::after {
    content: '';
    position: absolute;
    bottom: -30px; /* Moved down to match desktop spacing */
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 3px;
}

.hero-content h1 {
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-size: 3.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    line-height: 1.3;
    width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

.changing-text {
    display: inline-block;
    color: var(--accent-color);
    position: relative;
    min-width: auto;
    max-width: 100%;
    transition: opacity 0.5s ease;
}

.hero-line {
    display: block;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--secondary-color);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

/* About Section - Completely New Design - Centralized */
.vision-section {
    padding: 80px 0 120px;
    background: linear-gradient(to bottom, #ffffff, #f7f9fb);
    position: relative;
    overflow: hidden;
}

.vision-container-centered {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.vision-content-centered {
    position: relative;
    z-index: 1;
}

.vision-content-centered > p {
    font-size: 1.25rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #333;
    font-weight: 400;
}

.vision-label {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #1a6b54;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.vision-content-centered h2 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-color);
    text-align: center;
}

.vision-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1a6b54 0%, #d4af37 100%);
    margin: 0 auto 30px;
}

.vision-quote {
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.6;
    color: #444;
    margin: 0 auto 40px;
    position: relative;
    padding: 20px 30px;
    max-width: 900px;
    border-top: 2px solid #d4af37;
    border-bottom: 2px solid #d4af37;
    border-left: none;
    text-align: center;
}

.vision-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 50px auto;
    max-width: 500px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1a6b54;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--dark-gray);
    line-height: 1.4;
}

.vision-approach {
    background-color: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    margin: 30px auto 0;
    max-width: 1000px;
    text-align: center;
}

.vision-approach h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.vision-approach p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dark-gray);
    margin: 0;
}

/* Media queries for About Section */
@media (max-width: 992px) {
    .vision-container-centered {
        padding: 0 30px;
    }
    
    .vision-content-centered h2 {
        font-size: 2.5rem;
    }
    
    .vision-quote {
        font-size: 1.2rem;
        padding: 15px 20px;
    }
}

@media (max-width: 768px) {
    .vision-section {
        padding: 80px 0 60px;
    }
    
    .vision-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .vision-content-centered h2 {
        font-size: 2rem;
    }
    
    .vision-approach {
        padding: 30px 20px;
    }
}

.about-bullets li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
    list-style-type: none;
}

.about-bullets li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: #d4af37; /* Gold/orange brand color */
    border-radius: 50%;
}

/* Responsive styles for About section */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .profile-content {
        grid-template-columns: 1fr;
    }
    
    .credentials-experience-container {
        flex-direction: column;
        gap: 20px;
    }
}

.kelly-profile {
    background-color: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.premium-profile {
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    border: 2px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

/* Gradient text styling for headings */
.gradient-text {
    background: linear-gradient(135deg, #1a6b54 0%, #d4af37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.premium-profile .profile-image img {
    border: 3px solid var(--accent-color);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    transition: transform 0.5s ease;
}

.premium-profile .profile-image img:hover {
    transform: scale(1.02);
}

.kelly-profile h3 {
    text-align: center;
    margin-bottom: 30px;
}

.profile-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    margin-bottom: 30px;
}

.profile-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.credentials-experience-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin: 20px 0 30px;
    padding: 0;
    width: 100%;
    border-bottom: none;
}

.credentials {
    flex: 1;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #1a6b54;
}

.experience {
    flex: 1;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #d4af37; /* Gold brand color */
}

.credentials h5, .additional-info h5 {
    color: #1a6b54;
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--accent-color);
    display: inline-block;
    font-weight: 600;
}

.experience h5 {
    color: #d4af37; /* Gold brand color */
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #d4af37; /* Gold border bottom */
    display: inline-block;
    font-weight: 600;
}

.credentials ul, .experience ul {
    margin-left: 0;
    list-style: none;
    padding-left: 0;
}

.credentials li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.credentials li::before {
    content: '•';
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    color: #1a6b54; /* Green bullet points */
    font-size: 24px;
    line-height: 1;
}

.experience li {
    margin-bottom: 10px;
    line-height: 1.4;
    color: #333;
}

.experience ul {
    list-style: none;
    padding-left: 0;
}

.experience li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 10px;
    line-height: 1.4;
    color: #333;
}

.experience li::before {
    content: '•';
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    color: #d4af37; /* Gold bullet points */
    font-size: 24px;
    line-height: 1;
}

.about-text p {
    line-height: 1.6;
}

.about-text h5 {
    color: #d4af37; /* Gold/orange brand color */
    font-weight: 600;
    margin-bottom: 10px;
}

/* Experience section styling */
.profile-content h5 {
    color: #d4af37; /* Gold/orange brand color */
    font-weight: 600;
    margin-bottom: 10px;
}

.profile-content ul {
    list-style: none;
    padding-left: 0;
}

.profile-content li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.profile-content li:before {
    content: '•'; /* Unicode bullet */
    position: absolute;
    left: 0;
    color: #d4af37; /* Gold/orange brand color */
    font-size: 18px;
    line-height: 1.2;
}

.learn-more-container {
    text-align: left;
    margin: 30px 0 0;
    border: none;
}

#learn-more-btn {
    background-color: transparent;
    color: #1a6b54;
    border: 2px solid #1a6b54;
    padding: 8px 20px;
    font-size: 0.95rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

#learn-more-btn:hover {
    background-color: rgba(26, 107, 84, 0.1);
    color: #1a6b54;
}

.additional-info {
    margin-top: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    text-align: left;
    border-top: none;
}

.additional-info.active {
    max-height: 2000px;
    opacity: 1;
    padding-top: 25px;
}

.additional-info h5 {
    margin-top: 25px;
}

.additional-info h5:first-child {
    margin-top: 0;
}

.connect-links {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.connect-link {
    display: inline-flex;
    align-items: center;
    color: #1a6b54;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 16px;
    border-radius: 6px;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
}

.connect-link i {
    font-size: 1.3rem;
    margin-right: 10px;
}

.connect-link.linkedin i {
    color: #0077b5;
}

.connect-link.calendar i {
    color: #d4af37;
}

.connect-link:hover {
    background-color: #ffffff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.next-steps {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--medium-gray);
}

/* Services Section */
.services {
    background-color: var(--secondary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--light-gray);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.service-summary {
    margin-bottom: 15px;
    color: var(--dark-gray);
    line-height: 1.5;
}

.service-details {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease-in-out;
    margin-top: 0;
}

.service-card:hover .service-details,
.service-card.expanded .service-details {
    max-height: 500px;
    opacity: 1;
    margin-top: 15px;
}

.service-card ul {
    margin-left: 20px;
}

/* Service card styles already defined above */

/* Quote Section */
.quote {
    background-image: url('../images/fertility clinic Innovators 4.png');
    background-size: cover;
    background-position: center;
    color: var(--secondary-color);
    padding: 80px 0;
    position: relative;
}

.quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1;
}

.quote-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

blockquote {
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 20px;
}

blockquote p {
    color: var(--secondary-color);
}

blockquote cite {
    font-size: 1.2rem;
    font-style: normal;
    color: var(--accent-color);
}

/* Success Map Section */
.success-map {
    background-color: var(--light-gray);
}

.success-map-content {
    max-width: 1200px;
    margin: 0 auto;
}

.intro-text {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
}

.map-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.map-step {
    flex: 1;
    text-align: center;
    padding: 0 15px;
    position: relative;
    min-width: 200px;
}

.map-step h3 {
    white-space: nowrap;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.map-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -30px;
    width: 60px;
    height: 2px;
    background-color: var(--accent-color);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a6b54 0%, #d4af37 100%);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 600;
    margin: 0 auto 20px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-step:hover .step-number {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #d4af37 0%, #1a6b54 100%);
}

.commitment {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.profile-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
    border: none;
}

/* Moving Text Section */
.moving-text {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 30px 0;
    overflow: hidden;
}

.text-slider {
    display: flex;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
}

.text-slide {
    padding: 0 30px;
    font-size: 1.2rem;
    font-weight: 500;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Experience Section */
.experience {
    background-color: var(--secondary-color);
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.engagements h3, .partners h3 {
    margin-bottom: 30px;
}

.publication-list {
    list-style: none;
    margin-left: 0;
}

.publication-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--medium-gray);
}

.publication-list li:last-child {
    border-bottom: none;
}

.publication-list a {
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.contact-links a {
    display: block;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.strategy-session-btn {
    display: inline-block;
    background: linear-gradient(135deg, #1a6b54 0%, #d4af37 100%);
    color: var(--secondary-color) !important;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.strategy-session-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #d4af37 0%, #1a6b54 100%);
}

.strategy-session-btn i {
    margin-right: 8px;
}

/* Podcast Section Styling */
.podcast {
    background-color: var(--light-gray);
}

.podcast-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.podcast-frame {
    width: 100%;
    max-width: 800px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.podcast-frame:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.podcast-link {
    display: block;
    width: 100%;
    text-decoration: none;
}

.podcast-card {
    display: flex;
    align-items: center;
    padding: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    border-left: 5px solid var(--accent-color);
}

.podcast-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-right: 30px;
    flex-shrink: 0;
}

.podcast-info h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.podcast-info p {
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.listen-btn {
    display: inline-block;
    background: linear-gradient(135deg, #1a6b54 0%, #d4af37 100%);
    color: var(--secondary-color);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.listen-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #d4af37 0%, #1a6b54 100%);
}

.listen-btn i {
    margin-right: 5px;
}

.additional-content {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.view-more-btn {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

.view-more-btn:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
}

.publications-list {
    width: 100%;
    margin-top: 30px;
    padding: 30px;
    background-color: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.publications-list h3 {
    margin-bottom: 20px;
    text-align: center;
}

.publications-list.hidden {
    display: none;
}

@media (max-width: 768px) {
    .podcast-card {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .podcast-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

.publication-list a:hover {
    color: var(--accent-color);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.partner-card {
    background-color: var(--light-gray);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: var(--transition);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.partner-card img {
    max-width: 100%;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

.partner-card h4 {
    font-size: 1rem;
    margin-bottom: 0;
}

/* Next Steps Section */
.next-steps-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    text-align: center;
}

.next-steps-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.next-steps-content h3 {
    color: #1a6b54;
    font-size: 2.2rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.next-steps-content h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #d4af37;
}

.next-steps-content p {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 35px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.next-steps-cta {
    margin-top: 30px;
}

.next-steps-cta .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #1a6b54 0%, #1a6b54 80%, #d4af37 200%);
    border: none;
    color: white;
    border-radius: 5px;
    box-shadow: 0 8px 20px rgba(26, 107, 84, 0.3);
    transition: all 0.3s ease;
}

.next-steps-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(26, 107, 84, 0.4);
    background: linear-gradient(135deg, #1a6b54 0%, #1a6b54 60%, #d4af37 180%);
}

/* Media queries for Next Steps Section */
@media (max-width: 768px) {
    .next-steps-section {
        padding: 60px 0;
    }
    
    .next-steps-content {
        padding: 20px;
    }
    
    .next-steps-content h3 {
        font-size: 1.8rem;
    }
    
    .next-steps-content p {
        font-size: 1.1rem;
    }
}

/* Contact Section */
.contact {
    background-color: var(--light-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form {
    background-color: var(--secondary-color);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--medium-gray);
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.contact-info {
    padding: 40px;
}

.contact-links {
    margin-top: 30px;
}

.contact-links a {
    display: block;
    margin-bottom: 15px;
    font-weight: 500;
}

.contact-links i {
    margin-right: 10px;
    color: var(--accent-color);
}

/* Partners & Clients Section */
.partners-section {
    padding: 30px 0 40px;
    background-color: #ffffff;
    border-top: 1px solid var(--medium-gray);
    border-bottom: none;
}

.partners-logo-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    padding: 0;
    overflow-x: hidden;
    position: relative;
}

.partner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    flex: 1;
    transition: all 0.3s ease;
}

.partner-logo img {
    max-width: 85%;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(30%);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 200px;
    filter: brightness(0) invert(1); /* Makes the logo white */
    height: auto;
}

.logo-white {
    filter: brightness(0) invert(1);
}

.footer-info p {
    color: var(--secondary-color);
    opacity: 0.8;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
    margin-left: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--secondary-color);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--secondary-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Footer Contact Styles */
.footer-contact-links p {
    margin-bottom: 15px;
}

.footer-contact-links {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.social-icon-link a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #000000;
    color: #ffffff;
    border-radius: 0;
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-icon-link a i {
    color: #ffffff;
}

.social-icon-link a:hover {
    background-color: #333333;
    color: var(--accent-color);
}

.footer-contact-links i {
    margin-right: 10px;
}

.footer-newsletter {
    margin: 20px 0;
    text-align: left;
}

.newsletter-link {
    display: block;
    width: 100%;
    padding: 8px 12px;
    background-color: transparent;
    color: #d4af37;
    border: 1px solid #d4af37;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.newsletter-link:hover {
    color: #fff;
    background-color: #1a6b54;
}

.footer-consultation {
    margin-top: 20px;
}

.consultation-btn {
    display: block;
    width: 100%;
    padding: 8px 12px;
    background-color: #1a2a27; /* Dark green background */
    color: var(--accent-color); /* Gold text */
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.consultation-btn:hover {
    background-color: #15211f;
    color: #e5c04d;
    transform: translateY(-2px);
}

.footer-description {
    color: var(--secondary-color);
    opacity: 0.8;
    margin-top: 15px;
    font-size: 0.9rem;
    max-width: 90%;
}

.footer-bottom {
    text-align: left;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--secondary-color);
    opacity: 0.6;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    section {
        padding: 80px 0;
    }
    
    .map-steps {
        flex-direction: column;
        gap: 40px;
    }
    
    .map-step:not(:last-child)::after {
        display: none;
    }
    
    .experience-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
    }
    
    .footer-logo img {
        max-width: 180px;
        margin: 0;
    }
    
    .footer-description {
        max-width: 100%;
        margin: 15px 0 0;
        text-align: left;
    }
    
    .consultation-btn {
        padding: 8px 12px;
        display: block;
        width: 100%;
    }
    
    .footer-contact-links {
        justify-content: flex-start;
    }
    
    .footer-links ul {
        text-align: left;
    }
    
    .footer-bottom {
        text-align: left;
    }
    
    .footer-bottom p {
        text-align: left;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .nav-links {
        position: fixed;
        top: 56px; /* Match the mobile header height exactly */
        left: -100%;
        flex-direction: column;
        background-color: var(--secondary-color);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
        padding: 20px 0;
    }
    
    .header-right {
        justify-content: flex-end;
        align-items: center;
        position: relative;
    }
    
    /* Remove old header-cta - we're using nav-cta now */
    .header-cta {
        display: none;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 20px 0;
    }
    
    /* Style for nav-cta on mobile */
    .nav-cta {
        margin-top: 10px;
        display: block;
    }
    
    .nav-cta .btn {
        display: inline-block;
        padding: 10px 20px;
        margin: 0 auto;
    }
    
    .hamburger {
        display: block;
        margin-left: 20px;
        padding: 10px;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .profile-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    /* Fix hero section on mobile */
    .hero {
        padding-top: 56px; /* Match header height exactly */
        height: auto;
        min-height: 85vh; /* Reduced from 100vh to 85vh to match desktop */
        max-height: 85vh; /* Added max-height to ensure consistent height */
        width: 100vw;
    }
    
    .hero::before {
        width: 100vw;
    }
    
    .hero-content {
        padding: 100px 15px 30px; /* Increased top padding to match desktop spacing */
        width: 100%;
        margin: 0;
        border-radius: 0;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 20px;
        padding: 0 10px;
    }
    
    /* Ensure decorative line has consistent spacing on mobile */
    .hero-content::after {
        bottom: -30px;
    }
    
    .changing-text {
        min-width: auto;
        display: block;
        margin: 10px 0;
        font-size: 2rem;
    }
    
    /* Improve header on mobile */
    header {
        height: 56px;
        display: flex;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    /* Improve CTA button on mobile */
    .btn {
        padding: 12px 20px;
        font-size: 13px;
        white-space: nowrap;
        width: auto;
        display: inline-block;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    /* Additional fixes for very small screens */
    header .container {
        padding: 10px 15px;
    }
    
    .logo img {
        height: 50px;
    }
    
    .hero {
        padding-top: 76px; /* Account for fixed header height (56px) + 20px spacing */
    }
    
    .hero-content {
        padding: 25px 10px;
        width: 100%;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
        line-height: 1.2;
        padding: 0;
    }
    
    .hero-line {
        display: block;
        margin: 0;
    }
    
    .changing-text {
        display: block;
        margin: 0;
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 25px;
        padding: 0 5px;
    }
    
    .btn {
        padding: 12px 15px;
        font-size: 12px;
        width: 90%;
        max-width: 280px;
        margin: 0 auto;
        display: inline-block;
        white-space: normal;
        line-height: 1.3;
        text-align: center;
    }
    
    .header-btn {
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .contact-form, .contact-info {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .contact-form {
        padding: 25px 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }
    
    /* Partners section responsive styles */
    .partners-logo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 20px;
        padding: 15px 10px;
        overflow-x: visible;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .partner-logo {
        height: 80px;
        min-width: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .partner-logo img {
        max-height: 60px;
        max-width: 100%;
        object-fit: contain;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 14px 15px;
        font-size: 16px; /* Prevents iOS zoom on focus */
        border-radius: 8px;
        border: 1px solid #e0e0e0;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    }
    
    .form-group textarea {
        min-height: 120px;
    }
    
    .contact-form .btn {
        width: 100%;
        margin-top: 10px;
        padding: 16px 20px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 8px;
        background: linear-gradient(135deg, #1a6b54 0%, #d4af37 100%);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }
    
    .contact-form .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }
    
    blockquote {
        font-size: 1.5rem;
    }
}
