/* Import Recoleta Bold Font */
@import url('https://fonts.googleapis.com/css2?family=Recoleta:wght@700&display=swap');

/* TT Ramillas Font - Add @font-face if you have the font file */
@font-face {
    font-family: 'TT Ramillas';
    src: url('fonts/TTRamillas-Regular.woff2') format('woff2'),
         url('fonts/TTRamillas-Regular.woff') format('woff'),
         url('fonts/TTRamillas-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.8;
    color: #2B2B2B;
    background-color: #C9A0DC;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    color: #8c448f;
    margin-bottom: 1rem;
}

h1 {
    font-size: 1.75rem;
    font-weight: 500;
}

h2 {
    font-size: 1.5rem;
    font-weight: 500;
}

p {
    margin-bottom: 1.5rem;
    font-weight: 400;
}

a {
    color: #8c448f;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

a:hover {
    color: #8c448f;
    text-decoration: underline;
}

a:not(.cta-button):not(.footer-contact-button):not(.package-link):not(.main-nav a):active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

/* Background Sections */
.bg-purple {
    background-color: #C9A0DC;
    padding: 4rem 2rem;
}

.bg-yellow {
    background-color: #C9A0DC;
    padding: 4rem 2rem;
}

.bg-purple-light {
    background-color: #C9A0DC;
    padding: 4rem 2rem;
}

/* Global Header - Reference Style */
.global-header {
    background: linear-gradient(180deg, #8c448f 0%, #B866BB 100%);
    padding: 0;
    box-shadow: 0 4px 20px rgba(140, 68, 143, 0.3);
    position: relative;
}

.global-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(243, 217, 100, 0.6), 
        transparent);
}

.header-top {
    background: linear-gradient(135deg, #8c448f 0%, #6b3470 50%, #8c448f 100%);
    padding: 1.5rem 1rem;
    position: relative;
    box-shadow: inset 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.header-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(243, 217, 100, 0.8) 0%, 
        rgba(255, 255, 255, 0.4) 50%, 
        rgba(243, 217, 100, 0.8) 100%);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.header-logo {
    height: 88px;
    width: auto;
    display: block;
    max-height: 22vw;
    object-fit: contain;
}

.site-title {
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'TT Ramillas', 'Recoleta', 'Georgia', 'Times New Roman', serif;
    letter-spacing: 0.5px;
    text-transform: none;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3),
                 0 0 20px rgba(243, 217, 100, 0.2);
    margin: 0;
    position: relative;
}

.header-separator {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.nav-bar {
    background: linear-gradient(135deg, #B866BB 0%, #8c448f 50%, #B866BB 100%);
    padding: 1.5rem 1rem;
    position: relative;
    box-shadow: 0 4px 15px rgba(140, 68, 143, 0.3);
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.nav-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        rgba(243, 217, 100, 0.8) 0%, 
        rgba(255, 255, 255, 0.4) 50%, 
        rgba(243, 217, 100, 0.8) 100%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.logo-container {
    display: none;
}

.site-logo {
    display: none;
}

/* Hamburger Menu Button - Hidden on Desktop */
.mobile-menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    cursor: pointer;
    padding: 0.75rem;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.mobile-menu-toggle.active {
    background: rgba(243, 217, 100, 0.3);
    border-color: rgba(243, 217, 100, 0.5);
    box-shadow: 0 4px 15px rgba(243, 217, 100, 0.4);
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background-color: #FFFFFF;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.mobile-menu-toggle span:nth-child(1) {
    top: 12px;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 21px;
}

.mobile-menu-toggle span:nth-child(3) {
    top: 30px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    top: 21px;
    transform: translateX(-50%) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-50%) scale(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    top: 21px;
    transform: translateX(-50%) rotate(-45deg);
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0;
}

.main-nav li {
    margin: 0;
}

/* Hide Testimonials Link */
.main-nav a[href="testimonials.html"],
.footer-links-column a[href="testimonials.html"] {
    display: none;
}

.main-nav a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.875rem 1.75rem;
    display: block;
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.main-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: left 0.6s ease;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        rgba(243, 217, 100, 0.8), 
        rgba(255, 255, 255, 0.6), 
        rgba(243, 217, 100, 0.8));
    transform: translateX(-50%);
    transition: width 0.4s ease;
    border-radius: 2px;
}

.main-nav a:hover::before {
    left: 100%;
}

.main-nav a:hover::after {
    width: 80%;
}

.main-nav a:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.15));
    color: #FFFFFF;
    text-decoration: none;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 
                0 0 20px rgba(243, 217, 100, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.main-nav a.active,
.main-nav .nav-dropdown.active > a {
    background: linear-gradient(135deg, 
        rgba(243, 217, 100, 0.4), 
        rgba(255, 255, 255, 0.25), 
        rgba(243, 217, 100, 0.4));
    color: #FFFFFF;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(243, 217, 100, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.4),
                0 0 25px rgba(243, 217, 100, 0.3);
    border-color: rgba(243, 217, 100, 0.6);
    animation: activeGlow 3s ease-in-out infinite;
    transform: scale(1.05);
}

/* Navigation Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-arrow-nav {
    font-size: 0.8rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.nav-dropdown:hover .dropdown-arrow-nav,
.nav-dropdown.active .dropdown-arrow-nav {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(135deg, #8c448f 0%, #B866BB 100%);
    border-radius: 12px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 220px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    list-style: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 0;
    margin: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
    padding-left: 2rem;
}

.dropdown-menu a::before,
.dropdown-menu a::after {
    display: none;
}

/* Mobile dropdown menu support */
@media (max-width: 768px) {
    .nav-dropdown {
        position: relative;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        margin-top: 0;
        padding: 0;
        background: rgba(140, 68, 143, 0.95);
        border-radius: 0;
        box-shadow: none;
        border: none;
    }
    
    .nav-dropdown.active .dropdown-menu {
        max-height: 300px;
        padding: 0.5rem 0;
    }
    
    .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

.main-nav a.active::after {
    width: 90%;
    background: linear-gradient(90deg, 
        rgba(243, 217, 100, 1), 
        rgba(255, 255, 255, 0.8), 
        rgba(243, 217, 100, 1));
    height: 4px;
}

@keyframes activeGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(243, 217, 100, 0.4),
                    inset 0 1px 0 rgba(255, 255, 255, 0.4),
                    0 0 25px rgba(243, 217, 100, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(243, 217, 100, 0.6),
                    inset 0 1px 0 rgba(255, 255, 255, 0.5),
                    0 0 35px rgba(243, 217, 100, 0.5);
    }
}

/* Page Content */
.page-content {
    min-height: calc(100vh - 300px);
    background-color: #C9A0DC;
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page Intro Block */
.page-intro {
    background-color: #FFF8DC;
    border: 2px solid #f3d964;
    border-radius: 12px;
    padding: 2.5rem 1rem;
    margin: 0 1rem 3rem 1rem;
    text-align: center;
    width: calc(100% - 2rem);
    max-width: none;
    box-shadow: 0 4px 12px rgba(243, 217, 100, 0.2);
}

.page-intro h1 {
    font-size: 1.75rem;
    font-weight: 500;
    color: #8c448f;
    margin-bottom: 0.75rem;
}

.page-intro p {
    font-size: 1rem;
    color: #5a5a5a;
    margin-bottom: 0;
    line-height: 1.6;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.page-intro-wrapper {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.page-content-wrapper {
    padding: 0;
}

/* Home Page Styles */
.home-header {
    display: none;
}

.home-logo {
    display: none;
}

.main-content-section {
    margin-bottom: 0;
}

.home-content-wrapper {
    display: block;
    margin-bottom: 3rem;
}

.text-block {
    margin-bottom: 3rem;
}

.text-block p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.9;
}

.text-block p:first-child {
    font-size: 1.5rem;
    font-weight: 500;
    color: #8c448f;
    margin-bottom: 2rem;
}

.question-list {
    list-style: none;
    padding-left: 0;
    margin: 2rem 0;
}

.question-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.8;
}

.question-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8c448f;
}

.image-section {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3rem;
}

.image-card {
    background-color: #FFF8DC;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(243, 217, 100, 0.2);
    border: 2px solid #f3d964;
    flex: 1;
    min-width: 250px;
    max-width: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInScale 0.6s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.image-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 30px rgba(243, 217, 100, 0.5);
    border-color: #f3d964;
}

.image-card img {
    transition: transform 0.4s ease;
}

.image-card:hover img {
    transform: scale(1.05);
}

.image-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.credentials-card {
    background-color: #FFF8DC;
    border: 2px solid #f3d964;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(243, 217, 100, 0.2);
    margin-top: 3rem;
}

.credentials-section {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.credential-image {
    flex: 1;
    min-width: 150px;
    max-width: 200px;
    height: auto;
}

.credential-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.home-main-image-small {
    max-width: 400px;
    margin: 2rem auto 0 auto;
    padding: 1rem;
}

.about-main-image,
.consultations-main-image,
.services-main-image {
    margin-bottom: 4rem;
}

.consultations-main-image {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.consultations-main-image img {
    max-width: 100%;
    height: auto;
}

.home-image {
    flex: 1;
    min-width: 250px;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.introduction-section {
    background-color: #C9A0DC;
    padding: 3rem 2.5rem;
    margin-top: 0;
}

.introduction-section h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-align: center;
    color: #8c448f;
}

.introduction-section p {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    text-align: left;
}

.introduction-section .cta-button-wrapper {
    text-align: center;
}

/* Button Styles */
.cta-button {
    display: inline-block;
    background-color: #f3d964;
    color: #8c448f;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #f3d964;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    background-color: #e8d159;
    border-color: #e8d159;
    text-decoration: none;
    color: #8c448f;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(243, 217, 100, 0.4);
}

.cta-button:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
}

/* Card Styles */
.card {
    background-color: #FFF8DC;
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(243, 217, 100, 0.2);
    border: 2px solid #f3d964;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(243, 217, 100, 0.5);
    border-color: #f3d964;
}

.text-card {
    background-color: #FFF8DC;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 12px rgba(243, 217, 100, 0.2);
    border: 2px solid #f3d964;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideUp 0.6s ease-out;
    animation-fill-mode: both;
}

.text-card:nth-child(1) { animation-delay: 0.1s; }
.text-card:nth-child(2) { animation-delay: 0.2s; }
.text-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(243, 217, 100, 0.5);
    border-color: #f3d964;
}

/* About Page */
.about-content {
    display: block;
}

.profile-image-container {
    margin-bottom: 2.5rem;
    text-align: left;
}

.profile-image {
    max-width: 350px;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.about-text {
    max-width: 100%;
}

.about-text h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 500;
    color: #8c448f;
}

.about-text h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    font-weight: 500;
    color: #8c448f;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-card {
    background-color: #FFF8DC;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 12px rgba(243, 217, 100, 0.2);
    border: 2px solid #f3d964;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(243, 217, 100, 0.4);
    border-color: #f3d964;
}

/* Consultations Page */
.hero-tagline {
    color: #8c448f !important;
    font-weight: 500;
}

.intro-text {
    margin-bottom: 3rem;
}

.intro-text p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.specialisation-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0 2.5rem 0;
}

.specialisation-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.8;
}

.specialisation-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8c448f;
}

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

.service-blocks-consultations {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.service-block-consultation {
    background-color: #FFF8DC;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 12px rgba(243, 217, 100, 0.2);
    border: 2px solid #f3d964;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.service-block-consultation:nth-child(1) { animation-delay: 0.1s; }
.service-block-consultation:nth-child(2) { animation-delay: 0.2s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-block-short {
    min-height: 320px;
}

.service-block-wide {
    grid-column: 1 / -1;
    min-height: 280px;
}

.service-block-thin {
    padding: 1.5rem 2.5rem;
    min-height: 200px;
}

.service-block-consultation:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(243, 217, 100, 0.5);
    border-color: #f3d964;
}

.service-block-consultation h2,
.service-block-consultation h3 {
    color: #8c448f;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 500;
}

.service-block-consultation p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
    flex-grow: 1;
}

.service-block-consultation ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
    list-style: disc;
}

.service-block-consultation li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.service-price-box {
    background-color: rgba(243, 217, 100, 0.3);
    border: 2px solid #f3d964;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0 2rem 0;
    text-align: center;
    box-shadow: 0 2px 8px rgba(243, 217, 100, 0.3);
}

.service-price {
    font-weight: 700;
    font-size: 1.3rem;
    color: #8c448f;
    display: block;
    letter-spacing: 0.5px;
}

.service-block-consultation .cta-button {
    margin-top: auto;
    width: 100%;
    text-align: center;
}

.packages-info {
    background-color: #FFF8DC;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 12px rgba(243, 217, 100, 0.2);
    border: 2px solid #f3d964;
    margin-bottom: 2rem;
}

.packages-info h3 {
    color: #8c448f;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-align: center;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.package-item {
    text-align: center;
    padding: 2rem;
    background-color: rgba(243, 217, 100, 0.1);
    border-radius: 8px;
    border: 2px solid #f3d964;
    display: flex;
    flex-direction: column;
}

.package-item strong {
    display: block;
    color: #8c448f;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.package-item .package-price {
    color: #8c448f;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.package-link {
    display: block;
    margin-top: 0;
    padding: 0.875rem 1.5rem;
    background-color: #f3d964;
    color: #8c448f;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.package-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.package-link:hover::before {
    width: 300px;
    height: 300px;
}

.package-link:hover {
    background-color: #e8d159;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(243, 217, 100, 0.4);
    text-decoration: none;
    color: #8c448f;
}

.package-link:active {
    transform: translateY(-1px) scale(0.98);
}

.service-block {
    background-color: #FFF8DC;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 12px rgba(243, 217, 100, 0.2);
    border: 2px solid #f3d964;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.service-block:nth-child(1) { animation-delay: 0.1s; }
.service-block:nth-child(2) { animation-delay: 0.2s; }
.service-block:nth-child(3) { animation-delay: 0.3s; }

.service-block:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(243, 217, 100, 0.5);
    border-color: #f3d964;
}

.service-block:last-child {
    margin-bottom: 0;
}

.service-block h2 {
    color: #8c448f;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 500;
}

.service-block p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
    flex-grow: 1;
}

.service-block ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
    list-style: disc;
}

.service-block li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.price {
    font-weight: 500;
    font-size: 1.1rem;
    color: #2B2B2B;
    margin: 2rem 0 1.5rem 0;
    padding: 0.75rem 1rem;
    background-color: rgba(243, 217, 100, 0.3);
    border-radius: 6px;
    display: inline-block;
}

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

.package-list li {
    padding: 0.75rem 0;
    font-size: 1.05rem;
    line-height: 1.8;
    padding-left: 1.5rem;
    position: relative;
}

.package-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8c448f;
}

.fee-note {
    margin-top: 3rem;
    color: #6F6F6F;
    text-align: left;
    font-size: 1rem;
}

/* Services Page */
.page-content-wrapper h1 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    font-weight: 500;
    color: #8c448f;
}

.page-content-wrapper p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.services-card {
    background-color: #FFF8DC;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 12px rgba(243, 217, 100, 0.2);
    border: 2px solid #f3d964;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.services-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(243, 217, 100, 0.4);
    border-color: #f3d964;
}

/* Terms and Privacy Pages */
.terms-content {
    max-width: 800px;
}

.terms-content h1 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    font-weight: 500;
    color: #8c448f;
}

.terms-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.terms-content h2 {
    font-size: 1.3rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: #8c448f;
}

.terms-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
    list-style: disc;
}

.terms-content li {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.terms-content strong {
    font-weight: 500;
}

.terms-text-container {
    background-color: #FFF8DC;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 12px rgba(243, 217, 100, 0.2);
    border: 2px solid #f3d964;
}

/* Contact Page */
.contact-info-card {
    background-color: #FFF8DC;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 12px rgba(243, 217, 100, 0.2);
    border: 2px solid #f3d964;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out;
}

.contact-info-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(243, 217, 100, 0.5);
}

.contact-info-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    color: #8c448f;
}

.contact-email {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: rgba(243, 217, 100, 0.1);
    border-radius: 8px;
    border-left: 4px solid #f3d964;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-email strong {
    color: #8c448f;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-email a {
    color: #8c448f;
    text-decoration: none;
    font-weight: 500;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: inline-block;
    max-width: 100%;
}

.contact-email a:hover {
    color: #f3d964;
    text-decoration: underline;
}

.contact-info-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #2B2B2B;
    margin-bottom: 0;
}

.contact-form-container {
    background-color: #FFF8DC;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 12px rgba(243, 217, 100, 0.2);
    border: 2px solid #f3d964;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.form-group input[type="email"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8c448f;
    box-shadow: 0 0 0 3px rgba(140, 68, 143, 0.1);
    transform: scale(1.01);
    transition: all 0.3s ease;
}

.contact-form {
    max-width: 100%;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: #8c448f;
    font-size: 1.05rem;
}

.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #f3d964;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #FFFFFF;
    color: #2B2B2B;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input[type="email"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8c448f;
    box-shadow: 0 0 0 3px rgba(140, 68, 143, 0.1);
    transform: scale(1.01);
    transition: all 0.3s ease;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    background-color: #f3d964;
    color: #8c448f;
    padding: 1rem 2.5rem;
    border: 2px solid #f3d964;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-button:hover::before {
    width: 300px;
    height: 300px;
}

.submit-button:hover {
    background-color: #e8d159;
    border-color: #e8d159;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(243, 217, 100, 0.4);
}

.submit-button:active {
    transform: translateY(-1px) scale(0.98);
    transition: all 0.1s ease;
}

/* Global Footer - Reference Style */
.global-footer {
    background-color: #8c448f;
    color: #FFFFFF;
    padding: 3rem 2rem;
    margin-top: 0;
    border-top: 3px solid #6b3470;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    width: 100%;
    box-sizing: border-box;
    padding: 0;
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-copyright {
    color: #FFFFFF;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 500px;
}

.footer-links-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-column a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.footer-links-column a:hover {
    color: #f3d964;
    text-decoration: underline;
}

.footer-links-separator {
    width: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 1rem;
}

.footer-contact-card {
    background-color: rgba(184, 102, 187, 0.6);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-contact-card h3 {
    color: #FFFFFF;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-contact-separator {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 1rem 0;
}

.footer-contact-card p {
    color: #FFFFFF;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-contact-card a {
    color: #FFFFFF;
    text-decoration: none;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: inline-block;
    max-width: 100%;
}

.footer-contact-card a:hover {
    color: #f3d964;
    text-decoration: underline;
}

.footer-contact-button {
    display: inline-block;
    background-color: rgba(184, 102, 187, 0.8);
    color: #FFFFFF;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    white-space: normal;
    position: relative;
    overflow: hidden;
}

.footer-contact-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.footer-contact-button:hover::before {
    width: 300px;
    height: 300px;
}

.footer-contact-button:hover {
    background-color: rgba(184, 102, 187, 1);
    text-decoration: none;
    color: #FFFFFF;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.footer-contact-button:active {
    transform: translateY(0) scale(1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-top .header-container {
        justify-content: space-between;
        padding: 0 1rem;
        position: relative;
    }

    /* Show logo on mobile - slightly larger but proportional */
    .header-logo {
        display: block;
        height: 72px;
        width: auto;
        max-height: 24vw;
    }

    /* Center title on mobile - positioned absolutely to center it perfectly */
    .site-title {
        font-size: 0.9rem;
        text-align: center;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 140px);
        max-width: calc(100% - 140px);
        margin: 0;
        padding-left: 30px; /* Add spacing from hamburger menu */
        padding-right: 0;
    }

    /* Hide second purple bar on mobile */
    .header-separator {
        display: none !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        visibility: hidden !important;
    }

    /* Hide the nav-bar (purple bar) on mobile - but keep it for mobile menu positioning */
    .nav-bar {
        height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: visible !important;
        background-color: transparent !important;
    }

    /* Show hamburger menu on mobile */
    .mobile-menu-toggle {
        display: flex;
        order: -1;
    }

    /* Ensure global-header can contain the absolutely positioned menu */
    .global-header {
        position: relative;
    }
    
    /* Position nav-bar container for menu */
    .nav-bar {
        position: relative;
    }
    
    /* Hide regular nav on mobile by default */
    .main-nav {
        display: block;
        width: 100%;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(180deg, 
            #8c448f 0%, 
            #B866BB 50%, 
            #8c448f 100%);
        padding: 1.5rem 0 2rem 0;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3),
                    0 0 40px rgba(140, 68, 143, 0.4);
        z-index: 1000;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-20px);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        border-bottom: 3px solid rgba(243, 217, 100, 0.5);
    }

    .main-nav::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, 
            rgba(243, 217, 100, 0.8) 0%, 
            rgba(255, 255, 255, 0.4) 50%, 
            rgba(243, 217, 100, 0.8) 100%);
    }

    .main-nav.active {
        max-height: calc(100vh - 70px);
        opacity: 1;
        transform: translateY(0);
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
    
    .main-nav li {
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.3s ease;
    }
    
    .main-nav.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .main-nav.active li:nth-child(1) { transition-delay: 0.1s; }
    .main-nav.active li:nth-child(2) { transition-delay: 0.15s; }
    .main-nav.active li:nth-child(3) { transition-delay: 0.2s; }
    .main-nav.active li:nth-child(4) { transition-delay: 0.25s; }
    .main-nav.active li:nth-child(5) { transition-delay: 0.3s; }
    .main-nav.active li:nth-child(6) { transition-delay: 0.35s; }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin: 0;
        width: 100%;
        min-height: auto;
    }

    .main-nav li {
        width: 100%;
    }

    .main-nav a {
        padding: 1.25rem 2rem;
        margin: 0.5rem 1rem;
        border-radius: 15px;
        text-align: left;
        border-bottom: none;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.25);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        font-weight: 500;
        min-height: 50px;
        display: flex;
        align-items: center;
    }

    .main-nav a:hover {
        background: linear-gradient(135deg, 
            rgba(255, 255, 255, 0.3), 
            rgba(243, 217, 100, 0.2));
        transform: translateX(15px) scale(1.02);
        padding-left: 2.5rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2),
                    0 0 20px rgba(243, 217, 100, 0.3);
        border-color: rgba(243, 217, 100, 0.5);
    }
    
    .main-nav a:active {
        transform: translateX(10px) scale(0.98);
    }
    
    .main-nav a.active {
        background: linear-gradient(135deg, 
            rgba(243, 217, 100, 0.4), 
            rgba(255, 255, 255, 0.25));
        border-color: rgba(243, 217, 100, 0.6);
        box-shadow: 0 4px 15px rgba(243, 217, 100, 0.4),
                    0 0 25px rgba(243, 217, 100, 0.3);
    }

    .nav-bar {
        padding: 1rem;
        position: relative;
    }

    .home-content-wrapper {
        display: block;
    }

    .image-section {
        flex-direction: column;
    }

    .image-card {
        width: 100%;
        max-width: 100%;
    }

    .home-image {
        width: 100%;
        max-width: 100%;
    }

    .about-content {
        flex-direction: column;
    }

    .profile-image-container {
        text-align: center;
    }

    .profile-image {
        margin: 0 auto;
    }

    .bg-purple,
    .bg-yellow,
    .bg-purple-light {
        padding: 3rem 1.5rem;
    }

    .page-intro {
        padding: 2rem 1rem;
        margin: 0 1rem 3rem 1rem;
        width: calc(100% - 2rem);
    }

    .credential-image {
        max-width: 120px;
        min-width: 100px;
    }

    .credentials-card {
        padding: 1.5rem;
    }

    .home-main-image-small {
        max-width: 300px;
        padding: 0.75rem;
    }
    
    .consultations-main-image {
        max-width: 300px;
    }

    .page-intro h1 {
        font-size: 1.5rem;
    }

    .page-intro p {
        font-size: 0.95rem;
    }

    .introduction-section {
        padding: 2rem 1.5rem;
    }

    .service-blocks {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-blocks-consultations {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-block-wide {
        grid-column: 1;
    }

    .service-block-consultation {
        min-height: auto;
    }

    .service-block-short {
        min-height: auto;
    }

    .service-block-wide {
        min-height: auto;
    }

    .service-block-thin {
        min-height: auto;
        padding: 1.5rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-block {
        padding: 2rem 1.5rem;
    }

    .services-card {
        padding: 2rem 1.5rem;
    }

    .text-card,
    .about-card,
    .terms-text-container,
    .contact-form-container {
        padding: 2rem 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-contact-card {
        padding: 1.5rem;
        max-width: 100%;
        box-sizing: border-box;
    }

    .footer-contact-card h3 {
        font-size: 1.2rem;
    }

    .footer-contact-card p {
        font-size: 0.95rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .footer-contact-card a {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .footer-contact-button {
        font-size: 0.9rem;
        padding: 0.75rem 1.25rem;
        white-space: normal;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-links-separator {
        display: none;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    .cta-button {
        display: block;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .bg-purple,
    .bg-yellow,
    .bg-purple-light {
        padding: 2rem 1rem;
    }

    .page-intro {
        padding: 1.5rem 1rem;
        margin: 0 0.75rem 3rem 0.75rem;
        width: calc(100% - 1.5rem);
    }

    .credential-image {
        max-width: 100px;
        min-width: 80px;
    }

    .credentials-section {
        gap: 1rem !important;
    }

    .credentials-card {
        padding: 1.25rem;
    }

    .home-main-image-small {
        max-width: 250px;
    }

    .contact-logo-image {
        margin-top: 1.5rem;
    }

    .contact-logo-image img {
        max-width: 250px;
    }

    .page-intro h1 {
        font-size: 1.4rem;
    }

    .page-intro p {
        font-size: 0.9rem;
    }

    .text-block p:first-child {
        font-size: 1.3rem;
    }

    .global-header {
        padding: 0;
    }

    .header-top {
        padding: 1.25rem 1rem;
    }

    .header-top .header-container {
        justify-content: space-between;
        position: relative;
    }

    .nav-bar {
        padding: 1rem;
    }

    .header-logo {
        display: block;
        height: 60px;
        width: auto;
        max-height: 22vw;
    }

    .header-separator {
        display: none !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        visibility: hidden !important;
    }

    /* Hide the nav-bar (purple bar) on mobile - but keep it for mobile menu positioning */
    .nav-bar {
        height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: visible !important;
        background-color: transparent !important;
    }
    
    .nav-bar .header-container {
        height: 0;
        overflow: visible;
    }

    .site-title {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
        text-align: center;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 140px);
        max-width: calc(100% - 140px);
        margin: 0;
        padding-left: 30px; /* Add spacing from hamburger menu */
        padding-right: 0;
    }

    .introduction-section {
        padding: 2rem 1.25rem;
    }

    .service-block {
        padding: 1.5rem 1.25rem;
    }

    .services-card {
        padding: 1.5rem 1.25rem;
    }

    .text-card,
    .about-card,
    .terms-text-container,
    .contact-form-container {
        padding: 1.5rem 1.25rem;
    }

    .global-footer {
        padding: 2rem 1rem;
    }

    .footer-contact-card {
        padding: 1.25rem;
        max-width: 100%;
        box-sizing: border-box;
    }

    .footer-contact-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .footer-contact-card p {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .footer-contact-card a {
        font-size: 0.9rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        display: inline-block;
        max-width: 100%;
    }

    .footer-contact-button {
        font-size: 0.85rem;
        padding: 0.625rem 1rem;
        white-space: normal;
        width: 100%;
        box-sizing: border-box;
    }

    h1 {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }

    .contact-email {
        font-size: 1rem;
        padding: 0.875rem;
    }

    .contact-email a {
        font-size: 0.95rem;
    }
}

/* Cookie Consent Banner */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #8c448f 0%, #B866BB 100%);
    color: #FFFFFF;
    padding: 2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: none;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid rgba(243, 217, 100, 0.6);
}

#cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-consent-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.cookie-consent-content {
    flex: 1;
}

.cookie-consent-content h3 {
    color: #FFFFFF;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-consent-content p {
    color: #FFFFFF;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 1rem;
}

.cookie-consent-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.cookie-consent-links a {
    color: #f3d964;
    text-decoration: underline;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.cookie-consent-links a:hover {
    color: #FFFFFF;
}

.cookie-consent-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    width: 100%;
}

.cookie-btn {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #f3d964 0%, #e8d159 100%);
    color: #8c448f;
    box-shadow: 0 4px 12px rgba(243, 217, 100, 0.4);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 217, 100, 0.6);
    background: linear-gradient(135deg, #e8d159 0%, #f3d964 100%);
}

.cookie-btn-reject {
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    #cookie-consent-banner {
        padding: 1.5rem;
    }
    
    .cookie-consent-container {
        gap: 1rem;
    }
    
    .cookie-consent-content h3 {
        font-size: 1.1rem;
    }
    
    .cookie-consent-content p {
        font-size: 0.9rem;
    }
    
    .cookie-consent-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        min-width: auto;
    }
}

/* Testimonials Carousel */
.testimonials-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.testimonials-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.testimonials-wrapper {
    flex: 1;
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.testimonial-item {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    display: flex;
    align-items: center;
    min-height: 200px;
}

.testimonial-item.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.testimonial-card {
    background-color: #FFF8DC;
    border-radius: 12px;
    padding: 3rem 2.5rem;
    box-shadow: 0 4px 12px rgba(243, 217, 100, 0.2);
    border: 2px solid #f3d964;
    text-align: center;
    animation: fadeInUp 0.6s ease-out;
    min-height: 200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.testimonial-stars {
    font-size: 1.5rem;
    color: #f3d964;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2B2B2B;
    margin: 0;
    font-style: italic;
}

.testimonial-author {
    font-size: 1rem;
    color: #8c448f;
    font-weight: 500;
    margin: 0;
}

.testimonial-nav-btn {
    background: linear-gradient(135deg, #f3d964 0%, #e8d159 100%);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(243, 217, 100, 0.4);
    color: #8c448f;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.testimonial-nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(243, 217, 100, 0.6);
    background: linear-gradient(135deg, #e8d159 0%, #f3d964 100%);
}

.testimonial-nav-btn:active {
    transform: scale(0.95);
}

.testimonial-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.testimonial-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(140, 68, 143, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-indicators .indicator.active {
    background: #8c448f;
    transform: scale(1.3);
    box-shadow: 0 2px 8px rgba(140, 68, 143, 0.4);
}

@media (max-width: 768px) {
    .testimonials-carousel {
        gap: 1rem;
    }
    
    .testimonial-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
}

/* Blog Styles */
.blog-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.blog-card {
    background-color: #FFF8DC;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(140, 68, 143, 0.18);
    border: 2px solid #f3d964;
    display: flex;
    flex-direction: column;
}

.blog-card-image {
    margin: 0;
}

.blog-card-image img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.blog-card-content {
    padding: 1.5rem 1.75rem 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-post-header h2 {
    margin-bottom: 0.5rem;
}

.blog-post-meta {
    font-size: 0.95rem;
    color: #6F6F6F;
    margin-bottom: 1rem;
}

.blog-category-pill {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background-color: rgba(243, 217, 100, 0.2);
    border: 1px solid #f3d964;
    color: #8c448f;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.blog-read-link {
    align-self: flex-start;
    margin-top: 0.75rem;
    font-weight: 500;
    font-size: 0.95rem;
    color: #8c448f;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.55rem 1.3rem;
    border-radius: 999px;
    border: 1px solid rgba(140, 68, 143, 0.25);
    background-color: rgba(243, 217, 100, 0.12);
}

.blog-read-link::after {
    content: "→";
    font-size: 0.95rem;
}

.blog-read-link:hover {
    color: #8c448f;
    text-decoration: none;
    background-color: rgba(243, 217, 100, 0.25);
    border-color: rgba(140, 68, 143, 0.35);
}

/* Back to blog link on article pages */
.blog-back-link {
    display: inline-block;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #8c448f;
    text-decoration: none;
    padding: 0.4rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(140, 68, 143, 0.25);
    background-color: rgba(243, 217, 100, 0.12);
}

.blog-back-link:hover {
    text-decoration: none;
    background-color: rgba(243, 217, 100, 0.25);
    border-color: rgba(140, 68, 143, 0.35);
}

/* Blog article page */
.blog-article-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.blog-article-card {
    background-color: #FFF8DC;
    border-radius: 18px;
    padding: 2.5rem;
    box-shadow: 0 18px 45px rgba(140, 68, 143, 0.25);
    border: 2px solid #f3d964;
}

.blog-article-hero {
    margin: 0 0 2rem 0;
    border-radius: 12px;
    overflow: hidden;
}

.blog-article-hero img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-article-body h3,
.blog-article-body h4 {
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
}

.blog-article-body ul {
    margin: 0 0 1.5rem 1.5rem;
    padding-left: 0;
}

.blog-article-body li {
    margin-bottom: 0.5rem;
}

.blog-table-wrapper {
    margin: 1.5rem 0;
    overflow-x: auto;
}

.blog-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    min-width: 700px;
}

.blog-table th,
.blog-table td {
    border: 1px solid #f3d964;
    padding: 0.75rem;
    text-align: left;
    vertical-align: top;
}

.blog-table th {
    background-color: rgba(243, 217, 100, 0.3);
    color: #8c448f;
}

@media (max-width: 768px) {
    .blog-card-image img {
        height: 190px;
    }
}

@media (min-width: 900px) {
    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-article-hero img {
        height: 320px;
        object-fit: cover;
    }
}


.terms-header-placeholder {
    width: 100%;
    max-width: 800px;
    height: 200px;
    background: linear-gradient(135deg, rgba(140, 68, 143, 0.1) 0%, rgba(184, 102, 187, 0.1) 100%);
    border: 2px solid #f3d964;
    border-radius: 12px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(243, 217, 100, 0.2);
}

/* Privacy Policy Dropdown */
.privacy-policy-dropdown {
    margin: 2rem 0;
}

.privacy-dropdown-toggle {
    width: 100%;
    background: linear-gradient(135deg, #f3d964 0%, #e8d159 100%);
    color: #8c448f;
    border: 2px solid #f3d964;
    border-radius: 8px;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(243, 217, 100, 0.3);
}

.privacy-dropdown-toggle:hover {
    background: linear-gradient(135deg, #e8d159 0%, #f3d964 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 217, 100, 0.4);
}

.privacy-dropdown-toggle:active {
    transform: translateY(0);
}

.dropdown-arrow {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.privacy-policy-content {
    background-color: #FFF8DC;
    border: 2px solid #f3d964;
    border-radius: 12px;
    padding: 2.5rem;
    margin-top: 1rem;
    box-shadow: 0 4px 12px rgba(243, 217, 100, 0.2);
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.privacy-policy-content h3 {
    color: #8c448f;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #f3d964;
    padding-bottom: 0.75rem;
}

.privacy-policy-content h4 {
    color: #8c448f;
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.privacy-policy-content ol,
.privacy-policy-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.privacy-policy-content li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.privacy-policy-content a {
    color: #8c448f;
    text-decoration: underline;
}

.privacy-policy-content a:hover {
    color: #B866BB;
}

@media (max-width: 768px) {
    .terms-header-placeholder {
        height: 150px;
    }
    
    
    .privacy-dropdown-toggle {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .privacy-policy-content {
        padding: 1.5rem;
    }
    
    .privacy-policy-content h3 {
        font-size: 1.5rem;
    }
    
    .privacy-policy-content h4 {
        font-size: 1.2rem;
    }
}

/* Photo Gallery */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1;
    box-shadow: 0 4px 12px rgba(243, 217, 100, 0.2);
    border: 2px solid #f3d964;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 20px rgba(243, 217, 100, 0.4);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(140, 68, 143, 0.1) 0%, rgba(184, 102, 187, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8c448f;
    font-size: 0.9rem;
    text-align: center;
    padding: 1rem;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .photo-gallery {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
}
