* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: var(--gold-color);
    border-radius: 6px;
    border: 2px solid #000000;
}

::-webkit-scrollbar-thumb:hover {
    background: #d4a84a;
}

/* Firefox scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--gold-color) #000000;
}

:root {
    --primary-bg: #000000;
    --text-color: #f0f0f0;
    --gold-color: #E8C062;
    --dark-bg: #000000;
}

body {
    font-family: 'Aboreto', cursive;
    background-color: #f5f5f5;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header Styles */
.header {
    background-color: var(--primary-bg);
    padding: 2px 0;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.logo-img {
    height: 130px;
    width: auto;
    flex-shrink: 0;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: var(--gold-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Navigation Styles */
.nav {
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
    justify-content: flex-end;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    width: auto;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 2.5px;
    transition: color 0.3s ease;
    position: relative;
    text-transform: uppercase;
}

.nav-link:hover {
    color: var(--gold-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Nav Right Container */
.nav-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 18px;
    flex: 1;
    padding-top: 10px;
}

/* PayPal Wrapper */
.paypal-wrapper {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

/* PayPal Button */
.paypal-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.paypal-img {
    height: 22px;
    width: auto;
}

.paypal-btn:hover .paypal-img {
    transform: scale(1.05);
}

/* Mobile Logo & PayPal (hidden on desktop) */
.mobile-logo,
.mobile-paypal {
    display: none;
}

/* Tablet Responsive (768px to 1180px) */
@media (min-width: 769px) and (max-width: 1180px) {
    .header {
        padding: 15px 0;
    }

    .header-content {
        gap: 20px;
    }

    .logo-img {
        height: 65px;
    }

    .nav-right {
        display: contents;
    }

    /* Hide desktop PayPal on tablet */
    .paypal-wrapper {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Sidebar Navigation */
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 320px;
        max-width: 85%;
        height: 100vh;
        background-color: var(--primary-bg);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 50px 35px;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 999;
        box-shadow: 4px 0 25px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
    }

    .nav.active {
        transform: translateX(0);
    }

    /* Sidebar overlay */
    .nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 320px;
        width: calc(100vw - 320px);
        height: 100vh;
        background: rgba(0, 0, 0, 0);
        transition: background 0.5s ease;
        pointer-events: none;
    }

    .nav.active::before {
        background: rgba(0, 0, 0, 0.5);
        pointer-events: auto;
    }

    /* Mobile Logo in Sidebar */
    .mobile-logo {
        display: flex;
        justify-content: center;
        margin-bottom: 45px;
        opacity: 0;
        transform: translateY(-20px);
        transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
    }

    .nav.active .mobile-logo {
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-logo-img {
        height: 75px;
        width: auto;
    }

    /* Nav List */
    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
        text-align: center;
    }

    .nav-list li {
        border-bottom: 1px solid rgba(232, 192, 98, 0.15);
        width: 100%;
        opacity: 0;
        transform: translateX(-30px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    /* Staggered animation for nav items */
    .nav.active .nav-list li:nth-child(1) {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.15s;
    }

    .nav.active .nav-list li:nth-child(2) {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.2s;
    }

    .nav.active .nav-list li:nth-child(3) {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.25s;
    }

    .nav.active .nav-list li:nth-child(4) {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.3s;
    }

    .nav.active .nav-list li:nth-child(5) {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.35s;
    }

    .nav.active .nav-list li:nth-child(6) {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.4s;
    }

    .nav-list li:first-child {
        border-top: 1px solid rgba(232, 192, 98, 0.15);
    }

    .nav-link {
        display: block;
        padding: 20px 0;
        font-size: 16px;
        color: var(--text-color);
        text-align: center;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:active {
        color: var(--gold-color);
    }

    /* Mobile PayPal in Sidebar */
    .mobile-paypal {
        display: flex;
        justify-content: center;
        margin-top: 40px;
        padding-top: 30px;
        border-top: 1px solid rgba(232, 192, 98, 0.15);
        width: 100%;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease 0.45s, transform 0.4s ease 0.45s;
    }

    .nav.active .mobile-paypal {
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-paypal .paypal-img {
        height: 42px;
        width: auto;
    }
}

/* Mobile Responsive (768px and down) */
@media (max-width: 768px) {
    .header {
        padding: 12px 0;
    }

    .header-content {
        gap: 15px;
    }

    .nav-right {
        display: contents;
    }

    /* Hide desktop PayPal on mobile */
    .paypal-wrapper {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Sidebar Navigation */
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        max-width: 85%;
        height: 100vh;
        background-color: var(--primary-bg);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 40px 30px;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 999;
        box-shadow: 4px 0 25px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
    }

    .nav.active {
        transform: translateX(0);
    }

    /* Sidebar overlay */
    .nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 280px;
        width: calc(100vw - 280px);
        height: 100vh;
        background: rgba(0, 0, 0, 0);
        transition: background 0.5s ease;
        pointer-events: none;
    }

    .nav.active::before {
        background: rgba(0, 0, 0, 0.5);
        pointer-events: auto;
    }

    /* Mobile Logo in Sidebar */
    .mobile-logo {
        display: flex;
        justify-content: center;
        margin-bottom: 40px;
        opacity: 0;
        transform: translateY(-20px);
        transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
    }

    .nav.active .mobile-logo {
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-logo-img {
        height: 70px;
        width: auto;
    }

    /* Nav List */
    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
        text-align: center;
    }

    .nav-list li {
        border-bottom: 1px solid rgba(232, 192, 98, 0.15);
        width: 100%;
        opacity: 0;
        transform: translateX(-30px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    /* Staggered animation for nav items */
    .nav.active .nav-list li:nth-child(1) {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.15s;
    }

    .nav.active .nav-list li:nth-child(2) {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.2s;
    }

    .nav.active .nav-list li:nth-child(3) {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.25s;
    }

    .nav.active .nav-list li:nth-child(4) {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.3s;
    }

    .nav.active .nav-list li:nth-child(5) {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.35s;
    }

    .nav.active .nav-list li:nth-child(6) {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.4s;
    }

    .nav-list li:first-child {
        border-top: 1px solid rgba(232, 192, 98, 0.15);
    }

    .nav-link {
        display: block;
        padding: 18px 0;
        font-size: 15px;
        color: var(--text-color);
        text-align: center;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:active {
        color: var(--gold-color);
    }

    /* Mobile PayPal in Sidebar */
    .mobile-paypal {
        display: flex;
        justify-content: center;
        margin-top: 35px;
        padding-top: 25px;
        border-top: 1px solid rgba(232, 192, 98, 0.15);
        width: 100%;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease 0.45s, transform 0.4s ease 0.45s;
    }

    .nav.active .mobile-paypal {
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-paypal .paypal-img {
        height: 38px;
        width: auto;
    }
}

/* Mobile Responsive (480px and down) */
@media (max-width: 480px) {
    .header {
        padding: 0px 0;
    }

    .header-content {
        gap: 10px;
    }

    .logo-img {
        height: 50px;
        width: auto;
    }

    .hamburger-line {
        width: 22px;
        height: 2.5px;
    }

    .nav {
        width: 260px;
        padding: 35px 25px;
    }

    .nav::before {
        left: 260px;
        width: calc(100vw - 260px);
    }

    .mobile-logo {
        margin-bottom: 30px;
    }

    .mobile-logo-img {
        height: 55px;
    }

    .nav-link {
        padding: 16px 0;
        font-size: 14px;
    }

    .mobile-paypal {
        margin-top: 30px;
        padding-top: 20px;
    }

    .mobile-paypal .paypal-img {
        height: 32px;
    }
}

/* Content Area */
.content {
    padding: 0;
}

/* ===== HERO SECTION ===== */
.hero {
    background-color: var(--primary-bg);
    min-height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    margin-top: -50px;
    padding-top: 50px;
}

/* Diagonal lighter background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(160deg, transparent 0%, transparent 55%, rgba(12, 12, 12, 0.61) 55.5%, rgba(0, 0, 0, 0.76) 100%);
    z-index: 0;
    pointer-events: none;
}

.hero-container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px 0 60px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex: 1;
    gap: 20px;
}

/* Hero Left Content */
.hero-left {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 60px 0 60px 0;
    padding-left: 150px;
    align-self: flex-start;
}

.hero-tagline {
    margin-bottom: 0;
}

.tagline-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.tagline-text span {
    font-family: 'Gideon Roman', serif;
    font-size: 90px;
    font-weight: 400;
    color: var(--gold-color);
    line-height: 1.1;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Hero Right Content */
.hero-right {
    flex: 0 0 55%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    align-self: flex-end;
    position: relative;
    z-index: 1;
    padding-right: 15px;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-image {
    max-width: 550px;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin-right: 50px;
    margin-top: 40px;
}

/* Signature Overlay - Positioned half on image, half on left */
.hero-signature-overlay {
    position: absolute;
    bottom: -40px;
    left: -380px;
    z-index: 10;
}

.signature-img {
    max-width: 700px;
    width: 100%;
    height: auto;
}

/* Bottom Subtitle */
.hero-bottom {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px 40px;
}

.hero-subtitle {
    font-family: 'Aboreto', cursive;
    font-size: 16px;
    color: var(--gold-color);
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* ===== HERO RESPONSIVE - TABLET (768px to 1180px) ===== */
@media (min-width: 769px) and (max-width: 1180px) {
    .hero {
        min-height: auto;
    }

    .hero-container {
        flex-direction: column;
        padding: 0 40px;
        gap: 15px;
        text-align: center;
    }

    .hero-left {
        flex: none;
        width: 100%;
        padding: 40px 0 30px 0;
        align-items: center;
    }

    .tagline-text {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

    .tagline-text span {
        font-size: 50px;
        letter-spacing: 1px;
        white-space: nowrap;
    }

    .hero-right {
        flex: none;
        width: 100%;
        justify-content: center;
        align-self: auto;
    }

    .hero-image {
        max-width: 600px;
    }

    .hero-signature-overlay {
        bottom: -50px;
        left: -82px;
    }

    .signature-img {
        max-width: 650px;
    }

    .hero-bottom {
        padding: 0 40px 30px;
    }

    .hero-subtitle {
        font-size: 13px;
        letter-spacing: 3px;
    }
}

/* ===== HERO RESPONSIVE - MOBILE (768px and down) ===== */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 40px 0 0 0;
        margin-top: 0;
    }

    .hero-container {
        flex-direction: column;
        padding: 0 25px;
        text-align: center;
        gap: 0;
    }

    .hero-left {
        flex: none;
        width: 100%;
        padding: 20px 0 30px 0;
        align-items: center;
    }

    .tagline-text {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .tagline-text span {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .hero-right {
        flex: none;
        width: 100%;
        justify-content: center;
        align-self: auto;
    }

    .hero-image-wrapper {
        justify-content: center;
        width: 100%;
    }

    .hero-image {
        max-width: 480px;
        margin-right: 0px;
    }

    .hero-signature-overlay {
        bottom: -30px;
        left: 50%;
        transform: translateX(-55%);
    }

    .signature-img {
        max-width: 500px;
    }

    .hero-bottom {
        padding: 20px 25px 30px;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 11px;
        letter-spacing: 2px;
    }
}

/* ===== HERO RESPONSIVE - SMALL MOBILE (480px and down) ===== */
@media (max-width: 480px) {
    .hero {
        padding: 30px 0 0 0;
        margin-top: 0;
    }

    .hero-container {
        padding: 0 20px;
    }

    .hero-left {
        padding: 15px 0 25px 0;
    }

    .tagline-text span {
        font-size: 36px;
        letter-spacing: 1px;
    }

    .hero-image {
        max-width: 300px;
        margin-right: 0px;
    }

    .hero-signature-overlay {
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
    }

    .signature-img {
        max-width: 400px;
    }

    .hero-bottom {
        padding: 15px 20px 25px;
    }

    .hero-subtitle {
        font-size: 9px;
        letter-spacing: 1.5px;
    }
}

/* ===== ABOUT SECTION ===== */
.about-section {
    position: relative;
    background-color: #f5f5f5;
    padding: 80px 0 100px;
    overflow: hidden;
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/backgrounddesign.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.06;
    z-index: 0;
}

.about-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 1;
}

/* Quote Box */
.quote-box {
    /* background-color: #ffffff; */
    border: 3px solid #100D60;
    border-radius: 0;
    padding: 28px 50px;
    margin: 0 auto 70px;
    max-width: 960px;
    text-align: center;
}

.quote-text {
    font-family: 'Gideon Roman', serif;
    font-size: 32px;
    font-weight: 500;
    font-style: normal;
    color: #000000;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    font-variant: small-caps;
    margin: 0;
}

/* Cards Wrapper */
.cards-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

/* Individual Card */
.card {
    flex: 0 0 340px;
    max-width: 340px;
    text-align: center;
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 340px;
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 0;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(16, 13, 96, 0) 37.98%, #100D60 94.62%);
    pointer-events: none;
    transition: all 0.4s ease;
}

.card-image-wrapper:hover .card-gradient {
    background: linear-gradient(180deg, rgba(16, 13, 96, 0.7) 0%, #100D60 100%);
}

.card-content {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    padding: 0 20px;
    z-index: 2;
    text-align: center;
}

.card-title {
    font-family: 'Gideon Roman', serif;
    font-size: 28px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    transition: all 0.4s ease;
    white-space: nowrap;
}

.card-desc {
    font-family: 'Aboreto', cursive;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    margin: 15px 0 0 0;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.card-image-wrapper:hover .card-content {
    bottom: 50%;
    transform: translateY(50%);
}

.card-image-wrapper:hover .card-desc {
    opacity: 1;
    max-height: 150px;
}

/* About Description */
.about-description {
    max-width: 100%;
    margin: 0 auto 40px;
    text-align: left;
}

.about-text {
    font-family: 'Lato';
    font-size: 23px;
    font-weight: 300;
    font-style: normal;
    color: #000000;
    line-height: 35px;
    letter-spacing: 0;
    margin-bottom: 20px;
}



/* CTA Button */
.about-cta {
    text-align: center;
}

.cta-button {
    display: inline-block;
    background-color: #100D60;
    color: #ffffff;
    font-family: 'Aboreto', cursive;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 14px;
    border-radius: 25px;
    border: 2px solid #100D60;
    transition: all 0.3s ease;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.cta-button:hover {
    background-color: #ffffff;
    color: #000000;
    border: 2px solid #100D60;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 13, 96, 0.3);
}

/* ===== ABOUT SECTION RESPONSIVE - TABLET (601px to 1180px) ===== */
@media (min-width: 601px) and (max-width: 1180px) {
    .about-section {
        padding: 60px 0 80px;
    }

    .about-container {
        padding: 0 40px;
    }

    .quote-box {
        padding: 24px 40px;
        margin-bottom: 50px;
        max-width: 700px;
    }

    .quote-text {
        font-size: 24px;
    }

    .cards-wrapper {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        margin-bottom: 50px;
    }

    .card {
        flex: 0 0 280px;
        max-width: 280px;
    }

    .card:nth-child(3) {
        flex: 0 0 280px;
        max-width: 280px;
    }

    .card-image-wrapper {
        height: 260px;
    }

    .card-title {
        font-size: 14px;
        letter-spacing: 1.5px;
        bottom: 15px;
    }

    .about-description {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .about-text {
        font-size: 20px;
        line-height: 30px;
    }

    .cta-button {
        font-size: 14px;
        padding: 16px 40px;
    }
}

/* ===== ABOUT SECTION RESPONSIVE - MOBILE (600px and down) ===== */
@media (max-width: 600px) {
    .about-section {
        padding: 50px 0 70px;
    }

    .about-container {
        padding: 0 25px;
    }

    .quote-box {
        padding: 20px 25px;
        margin-bottom: 40px;
        border-width: 2px;
    }

    .quote-text {
        font-size: 18px;
    }

    .cards-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin-bottom: 40px;
    }

    .card {
        flex: 0 0 auto;
        max-width: 350px;
        width: 100%;
    }

    .card-image-wrapper {
        height: 350px;
    }

    .card-title {
        font-size: 15px;
        letter-spacing: 1.5px;
        bottom: 18px;
    }

    .about-description {
        margin-bottom: 35px;
        text-align: center;
        max-width: 100%;
    }

    .about-text {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 16px;
    }

    .cta-button {
        font-size: 13px;
        padding: 16px 35px;
        letter-spacing: 1.5px;
    }
}

/* ===== ABOUT SECTION RESPONSIVE - SMALL MOBILE (480px and down) ===== */
@media (max-width: 480px) {
    .about-section {
        padding: 40px 0 60px;
    }

    .about-container {
        padding: 0 20px;
    }

    .quote-box {
        padding: 18px 20px;
        margin-bottom: 35px;
    }

    .quote-text {
        font-size: 16px;
    }

    .cards-wrapper {
        gap: 25px;
        margin-bottom: 35px;
    }

    .card {
        max-width: 350px;
    }

    .card-image-wrapper {
        height: 350px;
    }

    .card-title {
        font-size: 14px;
        letter-spacing: 1px;
        bottom: 15px;
    }

    .about-description {
        margin-bottom: 30px;
    }

    .about-text {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 14px;
    }

    .cta-button {
        font-size: 12px;
        padding: 14px 30px;
        letter-spacing: 1px;
        width: 100%;
        max-width: 280px;
    }
}

/* ===== SERVICES SECTION ===== */
.services-section {
    position: relative;
    background-color: #f5f5f5;
    padding: 80px 0 100px;
    overflow: hidden;
}

.services-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/service.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 0;
}

.services-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 50px 0 0;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
}

/* Left Image */
.services-image {
    flex: 0 0 40%;
    max-width: 40%;
}

.column-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

/* Right Content */
.services-content {
    flex: 1;
    padding-left: 80px;
    padding-right: 0;
    display: flex;
    flex-direction: column;
}

.services-title {
    font-family: 'Aboreto', cursive;
    font-size: 48px;
    font-weight: 400;
    color: #100D60;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 50px;
    text-align: center;
}

.services-columns {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.service-column {
    flex: 1;
}

.column-title {
    font-family: 'Gideon Roman', serif;
    font-size: 40px;
    font-weight: 400;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.arrow-icon {
    width: 30px;
    height: auto;
    flex-shrink: 0;
}

.service-list li span {
    font-family: 'Lato', cursive;
    font-size: 24px;
    font-weight: 300;
    color: #000000;
    white-space: nowrap;
}

.service-list li.and-more {
    padding-left: 45px;
    font-family: 'Lato', cursive;
    font-size: 20px;
    font-weight: 400;
    color: #000000;
}

.services-cta {
    text-align: center;
    margin-top: 20px;
}

/* ===== SERVICES SECTION RESPONSIVE - TABLET (601px to 1180px) ===== */
@media (min-width: 601px) and (max-width: 1180px) {
    .services-section {
        padding: 60px 0 80px 0;
        overflow: hidden;
    }

    .services-container {
        padding: 0 40px;
        gap: 30px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .services-image {
        flex: 0 0 30%;
        max-width: 30%;
    }

    .services-content {
        flex: 1;
        max-width: 100%;
        overflow: hidden;
    }

    .services-title {
        font-size: 36px;
        letter-spacing: 2px;
        margin-bottom: 40px;
    }

    .services-columns {
        gap: 30px;
        margin-bottom: 40px;
    }

    .column-title {
        font-size: 20px;
        letter-spacing: 2px;
        margin-bottom: 25px;
    }

    .arrow-icon {
        width: 20px;
    }

    .service-list li {
        gap: 10px;
        margin-bottom: 12px;
    }

    .service-list li span {
        font-size: 13px;
        white-space: normal;
    }

    .service-list li.and-more {
        padding-left: 30px;
        font-size: 13px;
    }

    .services-columns {
        margin-bottom: 20px;
    }

    .services-cta {
        margin-top: 10px;
    }
}

/* ===== SERVICES SECTION RESPONSIVE - MOBILE (600px and down) ===== */
@media (max-width: 600px) {
    .services-section {
        padding: 50px 0 70px;
    }

    .services-container {
        padding: 0 25px;
        flex-direction: column;
        gap: 40px;
    }

    .services-image {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .column-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .services-content {
        width: 100%;
    }

    .services-title {
        font-size: 32px;
        letter-spacing: 2px;
        margin-bottom: 35px;
    }

    .services-columns {
        flex-direction: column;
        gap: 35px;
        margin-bottom: 40px;
    }

    .column-title {
        font-size: 20px;
        letter-spacing: 2px;
        margin-bottom: 20px;
        text-align: center;
    }

    .service-list {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-left: 20px;
    }

    .arrow-icon {
        width: 22px;
    }

    .service-list li {
        gap: 12px;
        margin-bottom: 12px;
    }

    .service-list li span {
        font-size: 16px;
    }

    .service-list li.and-more {
        padding-left: 34px;
        font-size: 16px;
    }
}

/* ===== SERVICES SECTION RESPONSIVE - SMALL MOBILE (480px and down) ===== */
@media (max-width: 480px) {
    .services-section {
        padding: 40px 0 60px;
    }

    .services-container {
        padding: 0 20px;
        gap: 30px;
    }

    .services-content {
        padding-left: 0px;
    }


    .column-image {
        max-width: 400px;
    }

    .services-title {
        font-size: 26px;
        letter-spacing: 1.5px;
        margin-bottom: 30px;
    }

    .services-columns {
        gap: 30px;
        margin-bottom: 35px;
    }

    .column-title {
        font-size: 18px;
        letter-spacing: 1.5px;
        margin-bottom: 18px;
    }

    .arrow-icon {
        width: 20px;
    }

    .service-list li {
        gap: 10px;
        margin-bottom: 10px;
    }

    .service-list li span {
        font-size: 14px;
    }

    .service-list li.and-more {
        padding-left: 30px;
        font-size: 14px;
    }
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    position: relative;
    background-color: #ffffff;
    padding: 60px 0 70px;
}

.newsletter-top-border {
    display: none;
}

.newsletter-bottom-border {
    display: none;
}

.newsletter-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
    text-align: center;
}

.newsletter-title {
    font-family: 'Aboreto', serif;
    font-size: 48px;
    font-weight: 400;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 15px 0;
}

.newsletter-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    margin: 0 0 40px 0;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.form-inputs {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-input {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: italic;
    color: #333333;
    padding: 16px 30px;
    border: 2px solid #333333;
    border-radius: 16px;
    background: transparent;
    outline: none;
    width: 200px;
    transition: border-color 0.3s ease;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}

.newsletter-input.email-input {
    width: 280px;
}

.newsletter-input::placeholder {
    color: #999999;
    font-style: italic;
}

.newsletter-input:focus {
    border-color: #100D60;
}

.newsletter-btn {
    font-family: 'Aboreto', cursive;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    background-color: #100D60;
    padding: 16px 35px;
    border: 2px solid #100D60;
    border-radius: 50px;
    cursor: pointer;
    text-transform: lowercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background-color: #ffffff;
    color: #000000;
    border: 2px solid #100D60;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(16, 13, 96, 0.3);
}

/* ===== NEWSLETTER SECTION RESPONSIVE - TABLET (601px to 1180px) ===== */
@media (min-width: 601px) and (max-width: 1180px) {
    .newsletter-section {
        padding: 80px 0 100px;
    }

    .newsletter-container {
        padding: 0 40px;
    }

    .newsletter-title {
        font-size: 36px;
        letter-spacing: 1px;
    }

    .newsletter-subtitle {
        font-size: 16px;
        margin-bottom: 35px;
    }

    .newsletter-input {
        width: 180px;
        padding: 14px 25px;
        font-size: 15px;
    }

    .newsletter-input.email-input {
        width: 240px;
    }

    .newsletter-btn {
        padding: 14px 30px;
        font-size: 15px;
    }
}

/* ===== NEWSLETTER SECTION RESPONSIVE - MOBILE (600px and down) ===== */
@media (max-width: 600px) {
    .newsletter-section {
        padding: 60px 0 80px;
    }

    .newsletter-container {
        padding: 0 25px;
    }

    .newsletter-title {
        font-size: 26px;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }

    .newsletter-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
        line-height: 1.6;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .form-inputs {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        align-items: center;
    }

    .newsletter-input,
    .newsletter-input.email-input {
        width: 100%;
        max-width: 320px;
        padding: 14px 25px;
        font-size: 14px;
    }

    .newsletter-btn {
        width: 100%;
        max-width: 320px;
        padding: 14px 30px;
        font-size: 14px;
    }
}

/* ===== NEWSLETTER SECTION RESPONSIVE - SMALL MOBILE (480px and down) ===== */
@media (max-width: 480px) {
    .newsletter-section {
        padding: 50px 0 70px;
    }

    .newsletter-container {
        padding: 0 20px;
    }

    .newsletter-title {
        font-size: 22px;
    }

    .newsletter-subtitle {
        font-size: 13px;
    }

    .newsletter-input,
    .newsletter-input.email-input {
        max-width: 280px;
        padding: 12px 20px;
        font-size: 13px;
    }

    .newsletter-btn {
        max-width: 280px;
        padding: 12px 25px;
        font-size: 13px;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    position: relative;
    background-color: #f5f5f5;
    padding: 80px 0 100px;
    overflow: hidden;
}

.testimonials-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/service.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 0;
}

.testimonials-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 1;
}

/* Section Header */
.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-subtitle {
    font-family: 'Lato', cursive;
    font-size: 22px;
    font-weight: 400;
    color: #AD8F47;
    text-transform: uppercase;
    letter-spacing: 8px;
    display: block;
    margin-bottom: 15px;
}

.testimonials-title {
    font-family: 'Gideon Roman', serif;
    font-size: 48px;
    font-weight: 400;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Individual Card */
.testimonial-card {
    position: relative;
    width: 100%;
    height: fit-content;
}

.testimonial-card.with-border .testimonial-content {
    border: 3px solid #100D60;
    border-radius: 50px;
    padding: 30px 35px;
    box-sizing: border-box;
    min-height: 200px;
    max-height: 220px;
}

.testimonial-card.no-border .testimonial-content {
    border: 3px solid #100D60;
    border-radius: 50px;
    padding: 30px 35px;
    box-sizing: border-box;
    min-height: 200px;
}

.testimonial-content {
    display: flex;
    align-items: center;
    gap: 25px;
    width: 100%;
}

/* Avatar */
.testimonial-avatar {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #E8C062;
}

.avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text Wrapper */
.testimonial-text-wrapper {
    flex: 1;
    position: relative;
    padding: 5px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-mark {
    font-family: 'Georgia', serif;
    font-size: 60px;
    color: #d4d4d4;
    line-height: 1;
    position: absolute;
}

.quote-mark.quote-open {
    top: -15px;
    left: -5px;
}

.quote-mark.quote-close {
    bottom: 20px;
    right: 0;
}

.testimonial-quote {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: italic;
    color: #000000;
    line-height: 1.5;
    margin: 0 0 12px 0;
    padding-left: 25px;
}

.client-name {
    font-family: 'Lato', cursive;
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    text-align: right;
    margin: 0;
}

/* Position alternating cards */
.testimonial-card:nth-child(1) {
    grid-column: 1;
    justify-self: start;
}

.testimonial-card:nth-child(2) {
    grid-column: 2;
    justify-self: end;
}

.testimonial-card:nth-child(3) {
    grid-column: 1;
    justify-self: start;
}

.testimonial-card:nth-child(4) {
    grid-column: 2;
    justify-self: end;
}

/* ===== TESTIMONIALS SECTION RESPONSIVE - TABLET (601px to 1180px) ===== */
@media (min-width: 601px) and (max-width: 1180px) {
    .testimonials-section {
        padding: 60px 0 80px;
    }

    .testimonials-container {
        padding: 0 40px;
    }

    .testimonials-header {
        margin-bottom: 50px;
    }

    .testimonials-subtitle {
        font-size: 14px;
        letter-spacing: 6px;
        margin-bottom: 12px;
    }

    .testimonials-title {
        font-size: 38px;
        letter-spacing: 1px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonial-card:nth-child(1),
    .testimonial-card:nth-child(2),
    .testimonial-card:nth-child(3),
    .testimonial-card:nth-child(4) {
        grid-column: 1;
        justify-self: center;
        margin-left: 0;
    }

    .testimonial-card.with-border .testimonial-content,
    .testimonial-card.no-border .testimonial-content {
        padding: 25px 30px;
        max-width: 100%;
        width: 100%;
        min-height: 180px;
        max-height: none;
    }

    .testimonial-avatar {
        width: 120px;
        height: 120px;
    }

    .testimonial-quote {
        font-size: 15px;
        line-height: 1.5;
    }

    .quote-mark {
        font-size: 45px;
    }
}

/* ===== TESTIMONIALS SECTION RESPONSIVE - MOBILE (600px and down) ===== */
@media (max-width: 600px) {
    .testimonials-section {
        padding: 50px 0 70px;
    }

    .testimonials-container {
        padding: 0 25px;
    }

    .testimonials-header {
        margin-bottom: 40px;
    }

    .testimonials-subtitle {
        font-size: 12px;
        letter-spacing: 4px;
        margin-bottom: 10px;
    }

    .testimonials-title {
        font-size: 26px;
        letter-spacing: 1px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonial-card:nth-child(1),
    .testimonial-card:nth-child(2),
    .testimonial-card:nth-child(3),
    .testimonial-card:nth-child(4) {
        grid-column: 1;
        justify-self: center;
        margin-left: 0;
    }

    .testimonial-content {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-card.with-border .testimonial-content,
    .testimonial-card.no-border .testimonial-content {
        padding: 25px 20px;
        border-radius: 30px;
        max-width: 100%;
        width: 100%;
        min-height: auto;
        max-height: none;
    }

    .testimonial-avatar {
        width: 100px;
        height: 100px;
    }

    .testimonial-text-wrapper {
        padding: 0;
    }

    .quote-mark {
        font-size: 40px;
    }

    .quote-mark.quote-open {
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
    }

    .quote-mark.quote-close {
        display: none;
    }

    .testimonial-quote {
        font-size: 15px;
        padding-left: 0;
        padding-top: 20px;
        text-align: center;
    }

    .client-name {
        text-align: center;
        font-size: 14px;
    }
}

/* ===== TESTIMONIALS SECTION RESPONSIVE - SMALL MOBILE (480px and down) ===== */
@media (max-width: 480px) {
    .testimonials-section {
        padding: 40px 0 60px;
    }

    .testimonials-container {
        padding: 0 20px;
    }

    .testimonials-subtitle {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .testimonials-title {
        font-size: 22px;
    }

    .testimonials-grid {
        gap: 25px;
    }

    .testimonial-avatar {
        width: 85px;
        height: 85px;
        border-width: 3px;
    }

    .testimonial-quote {
        font-size: 14px;
        line-height: 1.5;
    }

    .client-name {
        font-size: 13px;
    }
}

/* ===== FOOTER SECTION ===== */
.footer {
    background-color: #000000;
    padding: 0px 20px 30px 20px;
}

.footer-container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

/* Footer Top */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

/* Footer Left - Logo and Phone */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    height: 150px;
    width: auto;
}

.footer-phone {
    font-family: 'Lato', sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -ms-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
}

.footer-phone:hover {
    color: #E8C062;
}

/* Footer Right - Social Icons */
.footer-right {
    display: flex;
    align-items: center;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 20px;
}

.social-icon svg {
    width: 22px;
    height: 22px;
}

.social-icon i {
    font-size: 20px;
}

.social-icon:hover {
    background-color: #E8C062;
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
}

.copyright {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 50px;
}

.footer-link {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #E8C062;
}

/* ===== FOOTER RESPONSIVE - TABLET (601px to 1180px) ===== */
@media (min-width: 601px) and (max-width: 1180px) {
    .footer {
        padding: 40px 0 25px;
    }

    .footer-container {
        padding: 0 40px;
    }

    .footer-top {
        margin-bottom: 40px;
    }

    .footer-logo-img {
        height: 80px;
    }

    .footer-phone {
        font-size: 16px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    .social-icon svg {
        width: 20px;
        height: 20px;
    }

    .copyright,
    .footer-link {
        font-size: 13px;
    }

    .footer-links {
        gap: 35px;
    }
}

/* ===== FOOTER RESPONSIVE - MOBILE (600px and down) ===== */
@media (max-width: 600px) {
    .footer {
        padding: 40px 0 25px;
    }

    .footer-container {
        padding: 0 25px;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 35px;
        margin-bottom: 35px;
    }

    .footer-left {
        align-items: center;
        gap: 20px;
    }

    .footer-logo-img {
        height: 80px;
    }

    .footer-phone {
        font-size: 16px;
    }

    .social-icons {
        gap: 12px;
    }

    .social-icon {
        width: 42px;
        height: 42px;
    }

    .social-icon svg {
        width: 20px;
        height: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .copyright {
        font-size: 12px;
    }

    .footer-links {
        gap: 30px;
    }

    .footer-link {
        font-size: 12px;
    }
}

/* ===== FOOTER RESPONSIVE - SMALL MOBILE (480px and down) ===== */
@media (max-width: 480px) {
    .footer {
        padding: 35px 0 20px;
    }

    .footer-container {
        padding: 0 20px;
    }

    .footer-top {
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-logo-img {
        height: 70px;
    }

    .footer-phone {
        font-size: 15px;
    }

    .social-icon {
        width: 38px;
        height: 38px;
    }

    .social-icon svg {
        width: 18px;
        height: 18px;
    }

    .footer-links {
        gap: 25px;
    }

    .copyright,
    .footer-link {
        font-size: 11px;
    }
}

/* ===== ABOUT JENNY PAGE ===== */
.about-jenny-section {
    background-color: #000000;
    padding: 60px 0 80px;
    min-height: calc(100vh - 200px);
}

.about-jenny-container {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
}

.about-jenny-title {
    font-family: 'Aboreto', cursive;
    font-size: 48px;
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-align: center;
    margin-bottom: 50px;
}

.about-jenny-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Left Side - Images */
.about-jenny-left {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.jenny-main-image {
    width: 100%;
    border: 3px solid #E8C062;
    border-radius: 10px;
    overflow: hidden;
}

.jenny-portrait {
    width: 100%;
    height: auto;
    display: block;
}

.jenny-signature {
    text-align: center;
    padding: 10px 0;
}

.signature-name {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    color: #ffffff;
    letter-spacing: 0;
    line-height: 100%;
    margin: 0;
}

.jenny-group-images {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.group-image {
    width: 100%;
    height: auto;
    border: 3px solid #E8C062;
    border-radius: 10px;
    display: block;
}

/* Center - Content Boxes */
.about-jenny-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-box {
    border: 2px solid #E8C062;
    border-radius: 15px;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(50, 50, 80, 0.6) 0%, rgba(30, 30, 50, 0.7) 100%);
    backdrop-filter: blur(10px);
}

.info-box-title {
    font-family: 'Aboreto', cursive;
    font-size: 24px;
    font-weight: 400;
    font-style: normal;
    color: #ffffff;
    text-transform: uppercase;
    font-variant: small-caps;
    letter-spacing: 0;
    line-height: 100%;
    margin: 0 0 15px 0;
    padding-bottom: 0;
}

.info-box-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    color: #ffffff;
    line-height: 1.6;
    letter-spacing: 0;
    margin: 0 0 15px 0;
}

.info-box-text:last-child {
    margin-bottom: 0;
}

/* Right Side - Certification Badges */
.about-jenny-right {
    flex: 0 0 180px;
    display: flex;
    flex-direction: column;
    gap: 80px;
    align-items: center;
    padding-top: 30px;
}

.certification-badge {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* ===== ABOUT JENNY PAGE RESPONSIVE - TABLET (601px to 1180px) ===== */
@media (min-width: 601px) and (max-width: 1180px) {
    .about-jenny-section {
        padding: 50px 0 70px;
    }

    .about-jenny-container {
        padding: 0 40px;
    }

    .about-jenny-title {
        font-size: 38px;
        margin-bottom: 40px;
    }

    .about-jenny-content {
        flex-direction: column;
        gap: 30px;
    }

    .about-jenny-left {
        flex: none;
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 20px;
        order: 1;
    }

    .jenny-main-image {
        width: 220px;
        order: 1;
    }

    .jenny-signature {
        width: 100%;
        order: 3;
    }

    .jenny-group-images {
        flex-direction: column;
        gap: 15px;
        flex: 1;
        max-width: 350px;
        order: 2;
    }

    .group-image {
        width: 100%;
        max-width: 100%;
    }

    .about-jenny-center {
        order: 2;
    }

    .about-jenny-right {
        flex: none;
        width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 40px;
        order: 3;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .certification-badge {
        width: 100px;
        height: 100px;
    }

    .info-box {
        padding: 20px 25px;
    }

    .info-box-title {
        font-size: 20px;
    }

    .info-box-text {
        font-size: 13px;
    }
}

/* ===== ABOUT JENNY PAGE RESPONSIVE - MOBILE (600px and down) ===== */
@media (max-width: 600px) {
    .about-jenny-section {
        padding: 40px 0 60px;
    }

    .about-jenny-container {
        padding: 0 20px;
    }

    .about-jenny-title {
        font-size: 28px;
        letter-spacing: 2px;
        margin-bottom: 30px;
    }

    .about-jenny-content {
        flex-direction: column;
        gap: 25px;
    }

    .about-jenny-left {
        flex: none;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        order: 1;
    }

    .jenny-main-image {
        width: 350px;
        order: 1;
    }

    .jenny-signature {
        width: 100%;
        order: 3;
    }

    .jenny-group-images {
        width: 100%;
        flex-direction: column;
        gap: 20px;
        justify-content: center;
        align-items: center;
        order: 2;
    }

    .group-image {
        width: 100%;
        max-width: 350px;
    }

    .about-jenny-center {
        order: 2;
    }

    .about-jenny-right {
        flex: none;
        width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 40px;
        order: 3;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .certification-badge {
        width: 120px;
        height: 120px;
    }

    .info-box {
        padding: 18px 20px;
        border-radius: 12px;
    }

    .info-box-title {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .info-box-text {
        font-size: 13px;
        line-height: 1.6;
    }
}

/* ===== ABOUT JENNY PAGE RESPONSIVE - SMALL MOBILE (480px and down) ===== */
@media (max-width: 480px) {
    .about-jenny-section {
        padding: 30px 0 50px;
    }

    .about-jenny-container {
        padding: 0 15px;
    }

    .about-jenny-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .jenny-main-image {
        width: 350px;
    }

    .jenny-group-images {
        gap: 15px;
    }

    .group-image {
        width: 100%;
        max-width: 350px;
    }

    .certification-badge {
        width: 100px;
        height: 100px;
    }

    .info-box {
        padding: 15px 18px;
    }

    .info-box-title {
        font-size: 16px;
    }

    .info-box-text {
        font-size: 12px;
    }
}

/* ===== ABOUT NO LIMITS SECTION ===== */
.about-nolimits-section {
    background-color: #f5f5f5;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.decor-top-right {
    position: absolute;
    top: 13%;
    right: 2%;
    width: 1050px;
    height: auto;
    opacity: 0.15;
    pointer-events: none;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.decor-bottom-left {
    position: absolute;
    top: 21%;
    left: -10%;
    width: 950px;
    height: auto;
    opacity: 0.15;
    pointer-events: none;
    transform: rotate(180deg);
}

.decor-image {
    width: 100%;
    height: auto;
}

.about-nolimits-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 1;
}

.about-nolimits-title {
    font-family: 'Aboreto', cursive;
    font-size: 36px;
    font-weight: 400;
    font-style: normal;
    color: #100D60;
    text-transform: uppercase;
    letter-spacing: 0;
    line-height: 100%;
    text-align: center;
    margin-bottom: 40px;
}

.mission-content {
    text-align: center;
}

.mission-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    font-style: normal;
    color: #333333;
    line-height: 39px;
    letter-spacing: 0.05em;
    margin: 0;
    text-align: justify;
}

.mission-highlight {
    font-family: 'Alegreya SC', cursive;
    font-size: 40px;
    font-style: italic;
    font-weight: 400;
    color: #000000;
    text-transform: uppercase;
    font-variant: small-caps;
    letter-spacing: 2px;
}

/* ===== ABOUT NO LIMITS RESPONSIVE - TABLET ===== */
@media (min-width: 601px) and (max-width: 1180px) {
    .about-nolimits-section {
        padding: 60px 0;
    }

    .about-nolimits-container {
        padding: 0 40px;
    }

    .about-nolimits-title {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .decor-top-right,
    .decor-bottom-left {
        width: 700px;
    }

    .decor-top-right {
        position: absolute;
        top: 12%;
        right: -11%;
        height: auto;
        opacity: 0.15;
        pointer-events: none;
        transform: translateY(-50%);
    }

    .decor-bottom-left {
        position: absolute;
        top: 16%;
        left: -16%;
        width: 850px;
        height: auto;
        opacity: 0.15;
        pointer-events: none;
        transform: rotate(180deg);
    }

    .mission-text {
        font-size: 15px;
    }
}

/* ===== ABOUT NO LIMITS RESPONSIVE - MOBILE ===== */
@media (max-width: 600px) {
    .about-nolimits-section {
        padding: 50px 0;
    }

    .about-nolimits-container {
        padding: 0 25px;
    }

    .about-nolimits-title {
        font-size: 24px;
        letter-spacing: 2px;
        margin-bottom: 25px;
    }

    .decor-top-right,
    .decor-bottom-left {
        width: 450px;
        opacity: 0.05;
    }

    .mission-text {
        font-size: 14px;
        line-height: 1.7;
        text-align: left;
    }

    .mission-highlight {
        font-size: 16px;
    }
}

/* ===== ABOUT NO LIMITS RESPONSIVE - SMALL MOBILE ===== */
@media (max-width: 480px) {
    .about-nolimits-section {
        padding: 40px 0;
    }

    .about-nolimits-container {
        padding: 0 20px;
    }

    .about-nolimits-title {
        font-size: 20px;
    }

    .decor-top-right,
    .decor-bottom-left {
        width: 450px;
    }

    .mission-text {
        font-size: 13px;
    }

    .mission-highlight {
        font-size: 14px;
    }
}

/* ===== OUR VALUES SECTION ===== */
.values-section {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.values-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
}

.values-title {
    font-family: 'Aboreto', cursive;
    font-size: 36px;
    font-weight: 400;
    color: #100D60;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-align: center;
    margin-bottom: 50px;
}

.values-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.values-row-top {
    justify-content: center;
}

.values-row-bottom {
    justify-content: center;
}

/* Individual Value Card */
.value-card {
    flex: 0 0 calc(25% - 15px);
    max-width: calc(25% - 15px);
    text-align: center;
}

.value-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 5px;
    cursor: pointer;
}

.value-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.value-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(16, 13, 96, 0) 0%, #AD8F47 94.62%);
    pointer-events: none;
    transition: all 0.4s ease;
}

.value-image-wrapper:hover .value-gradient {
    height: 100%;
    background: linear-gradient(180deg, rgba(173, 143, 71, 0.7) 0%, #AD8F47 100%);
}

.value-content {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding: 0 15px;
    z-index: 2;
    text-align: center;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.value-title {
    font-family: 'Gideon Roman', serif;
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    transition: all 0.4s ease;
    text-align: center;
    width: 100%;
    line-height: 1.3;
}

.value-desc {
    font-family: 'Aboreto', cursive;
    font-size: 13px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    margin: 10px 0 0 0;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    text-align: center;
    width: 100%;
}

.value-image-wrapper:hover .value-content {
    bottom: 50%;
    transform: translate(-50%, 50%);
}

.value-image-wrapper:hover .value-desc {
    opacity: 1;
    max-height: 150px;
}

/* ===== VALUES SECTION RESPONSIVE - TABLET ===== */
@media (min-width: 601px) and (max-width: 1180px) {
    .values-section {
        padding: 60px 0;
    }

    .values-container {
        padding: 0 30px;
        max-width: 100%;
    }

    .values-title {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .values-row {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: flex-start;
    }

    .value-card {
        flex: 0 0 calc(33.333% - 14px);
        max-width: calc(33.333% - 14px);
    }

    .values-row-bottom {
        justify-content: flex-start;
    }

    .values-row-bottom .value-card {
        flex: 0 0 calc(33.333% - 14px);
        max-width: calc(33.333% - 14px);
    }

    .value-image-wrapper {
        height: 280px;
    }

    .value-title {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .value-desc {
        font-size: 11px;
    }
}

/* ===== VALUES SECTION RESPONSIVE - MOBILE ===== */
@media (max-width: 600px) {
    .values-section {
        padding: 50px 0;
    }

    .values-container {
        padding: 0 20px;
    }

    .values-title {
        font-size: 28px;
        letter-spacing: 2px;
        margin-bottom: 30px;
    }

    .values-row {
        flex-wrap: wrap;
        gap: 20px;
    }

    .value-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .values-row-bottom .value-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .value-image-wrapper {
        height: 300px;
    }

    .value-title {
        font-size: 22px;
        letter-spacing: 1px;
    }

    .value-desc {
        font-size: 12px;
        margin-top: 10px;
    }

    .value-content {
        bottom: 15px;
        padding: 0 15px;
    }
}

/* ===== VALUES SECTION RESPONSIVE - SMALL MOBILE ===== */
@media (max-width: 480px) {
    .values-section {
        padding: 40px 0;
    }

    .values-title {
        font-size: 24px;
    }

    .value-card {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }

    .value-image-wrapper {
        height: 250px;
        border-radius: 5px;
    }

    .value-title {
        font-size: 20px;
    }

    .value-desc {
        font-size: 11px;
        margin-top: 8px;
    }

    .value-content {
        bottom: 12px;
    }
}