:root {
    --primary-purple: #80007F;
    --nav-text-color: #2E2F35;
    --primary-blue: #47A4DE;
    --white: #ffffff;
    --section-background: #FAFAFA;
}

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

body {
    font-family: "Open Sans", sans-serif;
}

/* Purple Header Bar */
.top-header {
    background-color: var(--primary-purple);
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 40px;
}

.top-header-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-header-content a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5em;
    letter-spacing: 0px;
}

.top-header-content svg {
    width: 16px;
    height: 16px;
    fill: var(--white);
}

.top-header-content i {
    color: var(--white);
    font-size: 16px;
}

/* Navigation Bar */
.navbar {
    background-color: var(--white);
    padding: 0px 20px 0px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
    justify-content: flex-start;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
}

.nav-menu a {
    color: var(--nav-text-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2em;
    letter-spacing: 0px;
    transition: border-bottom 0.3s ease;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover {
    border-bottom: 2px solid var(--primary-blue);
}

/* Logo */
.logo {
    flex-shrink: 0;
    margin: 0px 0px -72px 0px;
    padding: 5px 0px 0px 0px;
}

.logo img {
    width: 150px;
    height: auto;
}

/* Nav Right Section */
.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
    justify-content: flex-end;
}

/* Get Started Button */
.btn-get-started {
    background-color: #4AAFDF;
    color: var(--white);
    border: none;
    border-radius: 100px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    font-family: "Open Sans", sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-get-started:hover {
    background-color: var(--primary-purple);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--nav-text-color);
    margin: 5px 0;
    transition: 0.3s;
}

/* Responsive Design */
/* Tablet and Mobile - Hamburger Menu */
@media (max-width: 1440px) {
    .mobile-menu-toggle {
        display: block;
    }

    .logo {
        margin: 0;
        padding: 0;
    }

    .logo img {
        width: 120px;
    }

    .nav-left .nav-menu {
        position: fixed;
        top: auto;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        margin: 0;
        margin-top: -1px;
        gap: 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        display: none;
        z-index: 100;
        max-height: calc(100vh - 150px);
        overflow-y: auto;
    }

    .nav-left .nav-menu.active {
        display: flex;
    }

    .nav-left .nav-menu li {
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 0;
        background-color: var(--white);
        transition: background-color 0.3s ease;
    }

    .nav-left .nav-menu li:hover {
        background-color: var(--primary-blue);
    }

    .nav-left .nav-menu a {
        display: block;
        padding: 10px 25px;
        transition: color 0.3s ease;
        font-size: 14px;
    }

    .nav-left .nav-menu li:hover a {
        color: var(--white);
        border-bottom: 2px solid transparent;
    }

    .nav-left .nav-menu li:last-child {
        border-bottom: none;
        box-shadow: none;
    }

    .nav-left {
        width: 100%;
        justify-content: space-between;
        flex: none;
    }

    .nav-right {
        flex: none;
        position: fixed;
        top: auto;
        left: 0;
        right: 0;
        background-color: var(--white);
        padding: 0 0 10px 0;
        margin: 0;
        display: none;
        z-index: 100;
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }

    .nav-right.active {
        display: flex;
    }
    
    .nav-right.active::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-right .nav-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }

    .nav-right .nav-menu li {
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 0;
        background-color: var(--white);
        transition: background-color 0.3s ease;
    }

    .nav-right .nav-menu li:hover {
        background-color: var(--primary-blue);
    }

    .nav-right .nav-menu li:first-child {
        border-top: none;
        box-shadow: none;
    }

    .nav-right .nav-menu a {
        display: block;
        padding: 10px 25px;
        transition: color 0.3s ease;
        font-size: 14px;
    }

    .nav-right .nav-menu li:hover a {
        color: var(--white);
        border-bottom: 2px solid transparent;
    }

    .nav-right .btn-get-started {
        width: auto;
        min-width: 150px;
        max-width: 200px;
        text-align: center;
        margin: 6px auto 0 auto;
        padding: 9px 18px;
        font-size: 13px;
    }

    .top-header {
        padding: 0 20px;
    }

    .navbar {
        padding: 15px 20px;
        flex-wrap: wrap;
        z-index: 101;
        position: sticky;
    }
}

/* Hero Section */
.hero {
    background-image: url('hero-background.jpg');
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 840px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0% 8% 0% 8%;
}

.hero-overlay {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-color: #000000;
    opacity: 0.33;
}

.hero-content {
    text-align: center;
    max-width: 1140px;
    z-index: 10;
    position: relative;
}

.hero-subtitle {
    font-family: "Open Sans", sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2em;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.hero-title {
    font-family: "Times New Roman", serif;
    font-size: 85px;
    font-weight: 600;
    line-height: 1em;
    color: #FFFFFF;
    margin-bottom: 40px;
}

.btn-hero {
    background-color: var(--primary-blue);
    color: var(--white);
    border: 1px solid var(--primary-blue);
    border-radius: 100px;
    padding: 16px 55px;
    font-size: 16px;
    font-weight: 500;
    font-family: "Open Sans", sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-hero:hover {
    background-color: var(--primary-purple);
    border-color: var(--primary-purple);
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero {
        min-height: 500px;
        padding: 80px 20px 60px 20px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-title {
        font-size: 50px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 40px;
    }
}

/* Meet Section */
.meet-section {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    align-content: center;
    margin-top: 12%;
    margin-bottom: 0%;
    padding: 0% 8% 0% 8%;
}

.meet-content {
    width: 50%;
    padding: 0% 20% 0% 0%;
}

.meet-label {
    font-family: "Open Sans", sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.meet-title {
    font-family: "Open Sans", sans-serif;
    font-size: 38px;
    font-weight: 600;
    line-height: 1.2em;
    color: var(--nav-text-color);
    margin-bottom: 20px;
}

.meet-description {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--nav-text-color);
    margin-bottom: 30px;
}

.meet-video {
    width: 50%;
}

.meet-video video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    aspect-ratio: 1.77777;
}

/* Responsive Meet Section */
@media (max-width: 768px) {
    .meet-section {
        margin-top: 20%;
        padding: 5% 8% 5% 8%;
        flex-direction: column-reverse;
    }

    .meet-content,
    .meet-video {
        width: 100%;
        padding: 0;
    }

    .meet-content {
        text-align: center;
        margin-top: 30px;
    }

    .meet-title {
        font-size: 32px;
    }
}

/* Franchise Concept Section */
.franchise-concept-section {
    background-color: var(--section-background);
    margin-top: 12%;
    margin-bottom: 0%;
    padding: 8% 8% 8% 8%;
    position: relative;
    text-align: center;
}

.corner-decoration {
    position: absolute;
    height: auto;
    z-index: 5;
}

.corner-decoration.top-left {
    left: -5%;
    top: -10%;
}

.corner-decoration.bottom-right {
    right: -5%;
    bottom: -10%;
}

.franchise-concept-content {
    position: relative;
    z-index: 10;
    margin: 0 auto;
}

.franchise-concept-title {
    font-family: "Open Sans", sans-serif;
    font-size: 38px;
    font-weight: 500;
    line-height: 1.5em;
    color: var(--nav-text-color);
    margin-bottom: 10px;
    position: relative;
}

.franchise-concept-subtitle {
    font-family: "Open Sans", sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5em;
    color: var(--nav-text-color);
    margin-bottom: 50px;
}

.franchise-images-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.franchise-images-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.franchise-images-grid img:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.franchise-description-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    text-align: left;
    margin-bottom: 50px;
}

.franchise-description-left p,
.franchise-description-right p {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--nav-text-color);
}

/* Responsive Franchise Concept Section */
@media (max-width: 1024px) {
    .franchise-images-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .corner-decoration {
        display: none;
    }
}

@media (max-width: 768px) {
    .franchise-concept-section {
        margin-top: 20%;
        padding: 15% 8% 15% 8%;
    }

    .corner-decoration {
        display: none;
    }

    .franchise-concept-title {
        font-size: 32px;
    }

    .franchise-concept-subtitle {
        font-size: 20px;
    }

    .franchise-images-grid {
        grid-template-columns: 1fr;
    }

    .franchise-description-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Fade in from top animation */
@keyframes fadeInFromTop {
    from {
        opacity: 0;
        transform: translateY(-60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons marked for animation start hidden */
.btn-animate-on-scroll {
    opacity: 0;
    transform: translateY(-60px);
}

/* Animation class that gets added via JavaScript when button enters viewport */
.btn-animate-on-scroll.animate-button {
    animation: fadeInFromTop 0.8s ease-out forwards;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-blue);
    margin-top: 0%;
    margin-bottom: 0%;
    padding: 5% 8% 5% 8%;
    text-align: center;
}

.cta-content {
    margin: 0 auto;
}

.cta-title {
    color: #FFFFFF;
    font-family: "Open Sans", sans-serif;
    font-size: 38px;
    font-weight: 600;
    text-transform: none;
    font-style: normal;
    text-decoration: none;
    line-height: 1.2em;
    letter-spacing: 0px;
    margin-bottom: 30px;
}

.cta-description {
    text-align: center;
    color: #FFFFFF;
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-transform: none;
    font-style: normal;
    text-decoration: none;
    line-height: 1.5em;
    letter-spacing: 0px;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    fill: #FFFFFF;
    color: #FFFFFF;
    background-color: transparent;
    border-style: solid;
    border-width: 2px;
    border-color: #FFFFFF;
    border-radius: 100px;
    padding: 16px 55px;
    font-size: 16px;
    font-weight: 500;
    font-family: "Open Sans", sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-cta:hover {
    background-color: #FFFFFF;
    color: var(--primary-purple);
}

/* Responsive CTA Section */
@media (max-width: 768px) {
    .cta-section {
        padding: 10% 8% 10% 8%;
    }

    .cta-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .cta-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
}

/* Franchise Process Section */
.franchise-process-section {
    background-image: url('process-background.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 0%;
    margin-bottom: 0%;
    padding: 6% 8% 6% 8%;
    position: relative;
    text-align: center;
}

.franchise-process-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.franchise-process-content {
    position: relative;
    z-index: 2;
}

.franchise-process-header {
    margin-bottom: 60px;
}

.franchise-process-label {
    color: #FFFFFF;
    font-family: "Open Sans", sans-serif;
    font-size: 22px;
    font-weight: 400;
    text-transform: none;
    font-style: normal;
    text-decoration: none;
    line-height: 1.5em;
    letter-spacing: 0px;
    margin-bottom: 10px;
}

.franchise-process-title {
    color: #FFFFFF;
    font-family: "Open Sans", sans-serif;
    font-size: 38px;
    font-weight: 600;
    text-transform: none;
    font-style: normal;
    text-decoration: none;
    line-height: 1.2em;
    letter-spacing: 0px;
}

.process-steps {
    max-width: 1140px;
    margin: 0 auto 60px auto;
}

.process-step {
    margin-bottom: 40px;
    padding: 10px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step-heading {
    color: #FFFFFF;
    font-family: "Open Sans", sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2em;
    margin-bottom: 10px;
}

.process-step-text {
    color: #FFFFFF;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
    font-style: normal;
    text-decoration: none;
    line-height: 1.5em;
    letter-spacing: 0px;
}

.franchise-process-cta {
    text-align: center;
}

/* Responsive Franchise Process */
@media (max-width: 768px) {
    .franchise-process-section {
        padding: 12% 8% 12% 8%;
    }
    
    .franchise-process-label {
        font-size: 14px;
    }
    
    .franchise-process-title {
        font-size: 28px;
    }
    
    .process-step-heading {
        font-size: 18px;
    }
    
    .process-step-text {
        font-size: 14px;
    }
    
    .process-step {
        margin-bottom: 30px;
    }
}

/* Franchisee Support Section */
.franchisee-support-section {
    background-color: #FFFFFF;
    margin-top: 0%;
    margin-bottom: 0%;
    padding: 8% 8% 8% 8%;
    text-align: center;
}

.franchisee-support-header {
    margin-bottom: 60px;
}

.franchisee-support-label {
    color: var(--nav-text-color);
    font-family: "Open Sans", sans-serif;
    font-size: 22px;
    font-weight: 400;
    text-transform: none;
    font-style: normal;
    text-decoration: none;
    line-height: 1.5em;
    letter-spacing: 0px;
    margin-bottom: 10px;
}

.franchisee-support-title {
    color: var(--nav-text-color);
    font-family: "Open Sans", sans-serif;
    font-size: 38px;
    font-weight: 600;
    text-transform: none;
    font-style: normal;
    text-decoration: none;
    line-height: 1.2em;
    letter-spacing: 0px;
}

.franchisee-support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0px;
    margin-bottom: 60px;
}

.support-card {
    text-align: center;
    border-style: solid;
    border-width: 0px 12px 12px 0px;
    border-color: var(--primary-blue);
    margin: 0px 0px 0px 40px;
    padding: 0px 40px 40px 40px;
}

.support-icon {
    margin-bottom: 20px;
}

.support-icon i {
    font-size: 45px;
    color: var(--primary-purple);
    padding: 20px;
    border-radius: 12px;
}

.support-heading {
    color: var(--nav-text-color);
    font-family: "Open Sans", sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2em;
    margin-bottom: 10px;
}

.support-text {
    color: var(--nav-text-color);
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
    font-style: normal;
    text-decoration: none;
    line-height: 1.5em;
    letter-spacing: 0px;
}

.franchisee-support-cta {
    text-align: center;
}

/* Responsive Franchisee Support */
@media (max-width: 1024px) {
    .franchisee-support-grid {
        grid-template-columns: 1fr;
        gap: 0px;
    }
}

@media (max-width: 768px) {
    .franchisee-support-section {
        padding: 12% 8% 12% 8%;
    }
    
    .franchisee-support-title {
        font-size: 32px;
    }
    
    .support-card {
        margin: 0px 0px 20px 0px;
        padding: 0px 30px 30px 30px;
    }
    
    .support-icon i {
        font-size: 40px;
    }
    
    .support-heading {
        font-size: 18px;
    }
    
    .support-text {
        font-size: 14px;
    }
}

/* Franchise Locations Section */
.franchise-locations-section {
    background-color: #FFFFFF;
    margin-top: 0%;
    margin-bottom: 0%;
    padding: 4% 8% 6% 8%;
    text-align: center;
}

.franchise-locations-title {
    color: var(--nav-text-color);
    font-family: "Open Sans", sans-serif;
    font-size: 38px;
    font-weight: 600;
    line-height: 1.2em;
    letter-spacing: 0px;
    margin-bottom: 40px;
}

.franchise-map {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Franchise Locations */
@media (max-width: 768px) {
    .franchise-locations-section {
        padding: 12% 8% 12% 8%;
    }
    
    .franchise-locations-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .franchise-map {
        height: 400px;
    }
}

/* Franchisees Section */
.franchisees-section {
    background-color: var(--section-background);
    margin-top: 0%;
    margin-bottom: 0%;
    padding: 6% 8% 4% 8%;
    text-align: center;
}

.franchisees-title {
    color: var(--nav-text-color);
    font-family: "Open Sans", sans-serif;
    font-size: 38px;
    font-weight: 600;
    line-height: 1.2em;
    letter-spacing: 0px;
    margin-bottom: 60px;
}

.franchisees-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.franchisee-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 40px 20px;
    background-color: #FFFFFF;
    border: 1px solid #E5E5E5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.franchisee-card:hover {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    box-shadow: 0 6px 20px rgba(71, 164, 222, 0.25);
    transform: translateY(-4px);
}

.franchisee-card:hover .franchisee-name,
.franchisee-card:hover .franchisee-location {
    color: #FFFFFF;
}

.franchisee-logo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.franchisee-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.franchisee-name {
    color: var(--nav-text-color);
    font-family: "Open Sans", sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2em;
    letter-spacing: 0px;
    text-align: center;
    transition: color 0.3s ease;
    margin-bottom: 8px;
}

.franchisee-location {
    color: #6B7280;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4em;
    text-align: center;
    transition: color 0.3s ease;
    margin: 0;
}

/* Responsive Franchisees */
@media (max-width: 1024px) {
    .franchisees-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .franchisees-section {
        padding: 12% 8% 12% 8%;
    }
    
    .franchisees-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .franchisees-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .franchisee-card {
        padding: 30px 20px;
    }
    
    .franchisee-logo {
        width: 150px;
        height: 150px;
        margin-bottom: 20px;
    }
    
    .franchisee-card .franchisee-name {
        font-size: 20px;
    }
    
    .franchisee-location {
        font-size: 14px;
    }
}

/* Carousel Section */
.carousel-section {
    background-color: #FFFFFF;
    padding: 10px;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
}

.carousel-track-wrapper {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 10px;
    transition: transform 0.5s ease;
}

.carousel-track img {
    width: calc((100% - 20px) / 3); /* 1/3 width minus gaps */
    height: auto;
    flex-shrink: 0;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    z-index: 10;
    border-radius: 4px;
}

.carousel-btn-prev {
    left: 20px;
}

.carousel-btn-next {
    right: 20px;
}

.carousel-btn:hover {
    opacity: 0.9;
    background-color: rgba(0, 0, 0, 0.5);
}

.carousel-btn i {
    font-size: 32px;
    color: #FFFFFF;
}

/* Franchise Facts Section */
.franchise-facts-section {
    background-color: var(--primary-purple);
    margin-top: 0%;
    margin-bottom: 0%;
    padding: 8% 8% 8% 8%;
    text-align: center;
}

.franchise-facts-header {
    margin-bottom: 60px;
}

.franchise-facts-label {
    color: #FFFFFF;
    font-family: "Open Sans", sans-serif;
    font-size: 22px;
    font-weight: 400;
    text-transform: none;
    font-style: normal;
    text-decoration: none;
    line-height: 1.5em;
    letter-spacing: 0px;
    margin-bottom: 10px;
}

.franchise-facts-title {
    color: #FFFFFF;
    font-family: "Open Sans", sans-serif;
    font-size: 38px;
    font-weight: 600;
    text-transform: none;
    font-style: normal;
    text-decoration: none;
    line-height: 1.2em;
    letter-spacing: 0px;
}

.franchise-facts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0px;
    margin-bottom: 60px;
}

.franchise-fact-card {
    text-align: center;
    border-style: solid;
    border-width: 0px 12px 12px 0px;
    border-color: #FFFFFF;
    margin: 0px 0px 0px 40px;
    padding: 0px 40px 40px 40px;
}

.franchise-fact-heading {
    color: #FFFFFF;
    font-family: "Open Sans", sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2em;
    margin-bottom: 10px;
}

.franchise-fact-text {
    color: #FFFFFF;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
    font-style: normal;
    text-decoration: none;
    line-height: 1.5em;
    letter-spacing: 0px;
}

.franchise-facts-cta {
    text-align: center;
}

/* Responsive Franchise Facts */
@media (max-width: 1024px) {
    .franchise-facts-grid {
        grid-template-columns: 1fr;
        gap: 0px;
    }
}

@media (max-width: 768px) {
    .franchise-facts-section {
        padding: 12% 8% 12% 8%;
    }
    
    .franchise-facts-title {
        font-size: 32px;
    }
    
    .franchise-fact-card {
        margin: 0px 0px 20px 0px;
        padding: 0px 30px 30px 30px;
    }
    
    .franchise-fact-heading {
        font-size: 18px;
    }
    
    .franchise-fact-text {
        font-size: 14px;
    }
}

/* Responsive Carousel */
@media (max-width: 1200px) {
    .carousel-track img {
        width: calc((100% - 10px) / 2); /* 2 images on medium screens */
    }
}

@media (max-width: 768px) {
    .carousel-track img {
        width: 100%; /* 1 image on mobile */
    }
    
    .carousel-btn i {
        font-size: 28px;
    }
    
    .carousel-btn {
        padding: 6px;
    }
    
    .carousel-btn-prev {
        left: 10px;
    }
    
    .carousel-btn-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .carousel-btn {
        padding: 5px;
    }
    
    .carousel-btn-prev {
        left: 5px;
    }
    
    .carousel-btn-next {
        right: 5px;
    }
    
    .carousel-btn i {
        font-size: 24px;
    }
}

/* Contact Form Section */
.contact-form-section {
    background-color: #FFFFFF;
    padding: 10% 8% 10% 8%;
    text-align: center;
    position: relative;
}

.contact-form-content {
    margin: 0 auto;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-form-subtitle {
    color: #2E2F35;
    font-family: "Open Sans", sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5em;
    margin-bottom: 20px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.contact-form-title {
    color: #2E2F35;
    font-family: "Open Sans", sans-serif;
    font-size: 38px;
    font-weight: 500;
    line-height: 1.5em;
    margin-bottom: 20px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.contact-form {
    width: 100%;
    margin: 40px auto 0;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    margin-bottom: 15px;
}

.form-group label {
    color: var(--primary-blue);
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5em;
    margin-bottom: 8px;
}

.form-group .required {
    color: #FF0000;
}

.form-group input,
.form-group textarea {
    border: 1px solid #69727d;
    border-radius: 4px;
    padding: 12px 15px;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    color: #2E2F35;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-group textarea {
    resize: vertical;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.btn-submit {
    background-color: var(--primary-blue);
    color: #FFFFFF;
    border: 1px solid var(--primary-blue);
    border-radius: 100px;
    padding: 16px 55px 16px 55px;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--primary-purple);
    border-color: var(--primary-purple);
}

/* Contact Form 7 Specific Styles */
.contact-form-wrapper {
    width: 100%;
    margin: 40px auto 0;
    text-align: left;
}

.contact-form-wrapper .wpcf7-form {
    width: 100%;
}

.contact-form-wrapper .wpcf7-form p {
    margin: 0;
}

.contact-form-wrapper .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 15px;
}

.contact-form-wrapper .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form-wrapper .form-group-full {
    margin-bottom: 15px;
}

.contact-form-wrapper .form-group label {
    color: var(--primary-blue);
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5em;
    margin-bottom: 8px;
    display: block;
}

.contact-form-wrapper .form-group .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.contact-form-wrapper .form-group input[type="text"],
.contact-form-wrapper .form-group input[type="email"],
.contact-form-wrapper .form-group input[type="tel"],
.contact-form-wrapper .form-group textarea {
    border: 1px solid #69727d;
    border-radius: 4px;
    padding: 12px 15px;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    color: #2E2F35;
    transition: border-color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.contact-form-wrapper .form-group input:focus,
.contact-form-wrapper .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.contact-form-wrapper .form-group textarea {
    resize: vertical;
}

.contact-form-wrapper .form-submit {
    text-align: center;
    margin-top: 30px;
}

.contact-form-wrapper .wpcf7-submit,
.contact-form-wrapper .btn-submit {
    background-color: var(--primary-blue);
    color: #FFFFFF;
    border: 1px solid var(--primary-blue);
    border-radius: 100px;
    padding: 16px 55px 16px 55px;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.contact-form-wrapper .wpcf7-submit:hover,
.contact-form-wrapper .btn-submit:hover {
    background-color: var(--primary-purple);
    border-color: var(--primary-purple);
}

/* CF7 Validation Messages */
.contact-form-wrapper .wpcf7-not-valid-tip {
    color: #FF0000;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

.contact-form-wrapper .wpcf7-validation-errors,
.contact-form-wrapper .wpcf7-acceptance-missing {
    border: 2px solid #FF0000;
    background-color: #ffe6e6;
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
    color: #2E2F35;
}

.contact-form-wrapper .wpcf7-mail-sent-ok {
    border: 2px solid #46b450;
    background-color: #e6f4e8;
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
    color: #2E2F35;
}

.contact-form-wrapper .wpcf7-spinner {
    margin: 0 10px;
}

/* Responsive Contact Form */
@media (max-width: 768px) {
    .contact-form-section {
        padding: 15% 8% 15% 8%;
    }
    
    .contact-form-subtitle {
        font-size: 18px;
    }
    
    .contact-form-title {
        font-size: 28px;
    }
    
    .form-row,
    .contact-form-wrapper .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Footer Section */
.footer-section {
    background-color: var(--primary-blue);
    padding: 5% 8% 5% 8%;
    color: #FFFFFF;
}

.footer-content {
    display: flex;
    gap: 100px;
    margin: 0 auto;
    align-items: flex-start;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.footer-logo img {
    width: 200px;
    height: auto;
    border-radius: 50%;
}

.footer-award-badge {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-award-badge img {
    width: 100px;
    height: 100px;
    border-radius: 0;
    object-fit: contain;
}

.footer-column {
    color: #FFFFFF;
    flex: 1;
}

.footer-heading {
    font-family: "Open Sans", sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.footer-subheading {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: normal;
    color: #FFFFFF;
    margin-bottom: 5px;
    margin-top: 10px;
}

.footer-text {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.5em;
    margin-bottom: 5px;
}

.footer-label {
    font-weight: normal;
}

.footer-bold {
    font-weight: bolder;
}

.footer-disclaimer {
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5em;
    color: #FFFFFF;
}

/* Copyright Section */
.copyright-section {
    background-color: var(--primary-purple);
    min-height: 45px;
    padding: 0 8%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copyright-text {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2em;
    color: #FFFFFF;
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 1024px) and (min-width: 769px) {
    .footer-content {
        flex-wrap: wrap;
        gap: 60px;
        align-items: center;
    }
    
    .footer-logo {
        flex: 0 0 auto;
    }
    
    .footer-logo img {
        width: 300px;
    }
    
    .footer-column:nth-child(2) {
        flex: 1;
    }
    
    .footer-column:last-child {
        flex: 1 1 100%;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-logo img {
        width: 300px;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 10% 8% 10% 8%;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-heading {
        font-size: 20px;
    }
    
    .footer-subheading {
        font-size: 14px;
    }
    
    .footer-text {
        font-size: 14px;
    }
    
    .footer-disclaimer {
        font-size: 12px;
    }
}

/* Franchisee Landing Page Styles */
.franchisee-landing-page {
    background-color: var(--white);
}

.franchisee-section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-heading {
    font-size: 42px;
    font-weight: 700;
    color: var(--nav-text-color);
    margin-bottom: 40px;
}

.section-heading.centered {
    text-align: center;
}

.section-heading.white {
    color: var(--white);
}

/* Franchisee-Specific Navbar */
.franchisee-navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 40px;
}

.franchisee-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.franchisee-logo {
    flex-shrink: 0;
}

.franchisee-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.franchisee-nav-menu {
    flex-grow: 1;
}

.franchisee-menu-items {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.franchisee-menu-items li {
    margin: 0;
}

.franchisee-menu-items a {
    color: var(--nav-text-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.franchisee-menu-items a:hover {
    color: var(--primary-blue);
}

.franchisee-nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-franchisee-call,
.btn-franchisee-home {
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-franchisee-call {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-franchisee-call:hover {
    background-color: #3590c9;
}

.btn-franchisee-home {
    background-color: transparent;
    color: var(--nav-text-color);
    border: 2px solid var(--nav-text-color);
}

.btn-franchisee-home:hover {
    background-color: var(--nav-text-color);
    color: var(--white);
}

.franchisee-navbar .mobile-menu-toggle {
    display: none;
}

/* Mobile Styles for Franchisee Navbar */
@media (max-width: 968px) {
    .franchisee-navbar {
        padding: 15px 20px;
    }
    
    .franchisee-nav-menu {
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        background-color: var(--white);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .franchisee-nav-menu.active {
        max-height: 400px;
        padding: 20px;
    }
    
    .franchisee-menu-items {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .franchisee-nav-actions {
        position: fixed;
        top: calc(90px + 200px);
        left: 0;
        right: 0;
        background-color: var(--white);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0 20px;
    }
    
    .franchisee-nav-actions.active {
        max-height: 200px;
        padding: 20px;
    }
    
    .btn-franchisee-call,
    .btn-franchisee-home {
        width: 100%;
        justify-content: center;
    }
    
    .franchisee-navbar .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
    }
    
    .franchisee-navbar .mobile-menu-toggle span {
        width: 25px;
        height: 3px;
        background-color: var(--nav-text-color);
        transition: all 0.3s ease;
    }
}

/* Franchisee Page Content Spacing */
.franchisee-single-page .wp-block-group,
.franchisee-single-page section {
    margin: 0;
}

/* Franchisee Footer Styles */
.franchisee-footer {
    background-color: var(--nav-text-color);
    color: var(--white);
    padding: 60px 40px 20px;
}

.franchisee-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.franchisee-footer-column h3,
.franchisee-footer-column h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.franchisee-footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
    background: white;
    padding: 10px;
    border-radius: 5px;
}

.franchisee-footer-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 10px;
}

.franchisee-footer-column a {
    color: var(--primary-blue);
    text-decoration: none;
}

.franchisee-footer-column a:hover {
    text-decoration: underline;
}

.btn-back-to-main {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background-color: var(--primary-blue);
    color: var(--white) !important;
    text-decoration: none !important;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-back-to-main:hover {
    background-color: #3590c9;
}

.franchisee-footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.franchisee-footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

@media (max-width: 768px) {
    .franchisee-footer {
        padding: 40px 20px 20px;
    }
    
    .franchisee-footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Franchisee Hero Section */
.franchisee-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.franchisee-hero-logo {
    max-width: 180px;
    margin-bottom: 30px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.franchisee-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    text-align: center;
}

.franchisee-hero-location {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 10px;
    text-align: center;
}

.franchisee-hero-tagline {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 30px;
    text-align: center;
    max-width: 600px;
}

.franchisee-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-franchisee-primary,
.btn-franchisee-secondary {
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

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

.btn-franchisee-primary:hover {
    background-color: #3590c9;
    transform: translateY(-2px);
}

.btn-franchisee-secondary {
    background-color: var(--white);
    color: var(--nav-text-color);
}

.btn-franchisee-secondary:hover {
    background-color: var(--section-background);
}

.btn-franchisee-primary.large,
.btn-franchisee-secondary.large {
    padding: 18px 40px;
    font-size: 18px;
}

/* About Section */
.franchisee-about-section {
    padding: 80px 0;
    background-color: var(--section-background);
}

.franchisee-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.franchisee-about-content .about-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--nav-text-color);
}

.franchisee-about-content .about-text p {
    margin-bottom: 20px;
}

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

/* Services Section */
.franchisee-services-section {
    padding: 80px 0;
    background-color: var(--white);
}

.franchisee-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.franchisee-service-card {
    background-color: var(--section-background);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.franchisee-service-card .service-icon {
    font-size: 48px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.franchisee-service-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--nav-text-color);
    margin-bottom: 15px;
}

.franchisee-service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Why Choose Us Section */
.franchisee-why-choose-section {
    padding: 80px 0;
    background-color: var(--section-background);
}

.franchisee-why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

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

.why-choose-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-choose-icon i {
    font-size: 36px;
    color: var(--white);
}

.why-choose-item h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--nav-text-color);
    margin-bottom: 15px;
}

.why-choose-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Gallery Section */
.franchisee-gallery-section {
    padding: 80px 0;
    background-color: var(--white);
}

.franchisee-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Hours & Location Section */
.franchisee-hours-location-section {
    padding: 80px 0;
    background-color: var(--section-background);
}

.hours-location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.hours-content,
.location-info {
    font-size: 18px;
    line-height: 1.8;
    color: var(--nav-text-color);
}

.location-info p {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.location-info i {
    color: var(--primary-blue);
    font-size: 20px;
    margin-top: 3px;
}

.location-info a {
    color: var(--primary-blue);
    text-decoration: none;
}

.location-info a:hover {
    text-decoration: underline;
}

/* Map Section */
.franchisee-map-section {
    background-color: var(--white);
}

#franchisee-single-map {
    width: 100%;
    height: 450px;
}

/* CTA Section */
.franchisee-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
    text-align: center;
}

.cta-text {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Responsive Styles for Franchisee Pages */
@media (max-width: 968px) {
    .franchisee-section-container {
        padding: 0 20px;
    }
    
    .section-heading {
        font-size: 32px;
    }
    
    .franchisee-hero {
        min-height: 500px;
    }
    
    .franchisee-hero-logo {
        max-width: 140px;
        padding: 15px;
    }
    
    .franchisee-hero-title {
        font-size: 36px;
    }
    
    .franchisee-hero-location {
        font-size: 20px;
    }
    
    .franchisee-hero-tagline {
        font-size: 18px;
    }
    
    .franchisee-hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .btn-franchisee-primary,
    .btn-franchisee-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .franchisee-about-section,
    .franchisee-services-section,
    .franchisee-why-choose-section,
    .franchisee-gallery-section,
    .franchisee-hours-location-section,
    .franchisee-cta-section {
        padding: 60px 0;
    }
    
    .franchisee-about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .franchisee-services-grid {
        grid-template-columns: 1fr;
    }
    
    .franchisee-why-choose-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .franchisee-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .hours-location-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .btn-franchisee-primary.large,
    .btn-franchisee-secondary.large {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   NEW FRANCHISEE TEMPLATE STYLES - CENTERED HORIZONTAL ACCORDION
   ============================================ */

/* Main Page Container */
.franchisee-page-centered {
    background: #f5f5f5;
    padding: 60px 0;
}

/* Hero Section - Centered Layout */
.franchisee-hero-centered {
    background: var(--white);
    padding: 60px 0;
    margin-bottom: 40px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Hero Left: Logo + Social Icons */
.hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.logo-circle-centered {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-circle-centered img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-icons-centered {
    display: flex;
    gap: 12px;
}

.social-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    font-size: 22px;
    transition: all 0.3s;
}

.social-icon-circle:hover {
    background: var(--primary-purple);
    transform: translateY(-3px);
}

/* Hero Right: Name + Mission */
.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.franchisee-name-hero {
    font-size: 48px;
    font-weight: 700;
    color: #2E2F35;
    margin-bottom: 20px;
    line-height: 1.2;
}

.mission-statement-hero {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
}

/* Horizontal Accordion Section */
.franchisee-accordion-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.accordion-wrapper-centered {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Horizontal Accordion Item */
.accordion-item-horizontal {
    background: var(--white);
    border: none;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s;
}

.accordion-row {
    display: flex;
    align-items: flex-start;
}

/* Accordion Title Button */
.accordion-title-btn {
    min-width: 280px;
    padding: 25px 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    text-align: left;
    transition: all 0.3s;
}

.accordion-title-btn:hover {
    color: var(--primary-blue);
}

.accordion-title-btn.active {
    color: var(--primary-blue);
}

/* Accordion Content (Horizontal) */
.accordion-content-horizontal {
    flex: 1;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

.accordion-content-horizontal.active {
    max-height: 2000px;
    opacity: 1;
}

.content-inner {
    padding: 30px 40px;
}

/* Who We Are Content */
.content-inner p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

.content-inner p:last-child {
    margin-bottom: 0;
}

/* Management Team Content */
.team-member-horizontal {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.team-member-horizontal:last-child {
    margin-bottom: 0;
}

.team-photo-circle {
    width: 150px;
    height: 150px;
    min-width: 150px;
    border-radius: 50%;
    overflow: hidden;
    background: #f5f5f5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.team-photo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    flex: 1;
}

.team-name {
    font-size: 24px;
    font-weight: 700;
    color: #2E2F35;
    margin-bottom: 5px;
}

.team-title {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.team-icons {
    display: flex;
    gap: 10px;
}

.team-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--primary-blue);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s;
}

.team-icon-circle:hover {
    background: var(--primary-purple);
    transform: translateY(-3px);
}

/* Location & Contact Content */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.location-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 16px;
    line-height: 1.6;
}

.location-row i {
    color: var(--primary-blue);
    font-size: 20px;
    margin-top: 3px;
    min-width: 20px;
}

.location-row a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.location-row a:hover {
    color: var(--primary-purple);
}

.location-social-row {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.location-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--primary-blue);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s;
}

.location-icon-circle:hover {
    background: var(--primary-purple);
    transform: translateY(-3px);
}

.location-map {
    width: 100%;
}

/* Responsive Design - Centered Horizontal Accordion */
@media (max-width: 1024px) {
    .hero-container {
        gap: 50px;
        padding: 0 30px;
    }
    
    .franchisee-name-hero {
        font-size: 40px;
    }
    
    .franchisee-accordion-section {
        padding: 0 30px;
    }
    
    /* Stack vertically on tablet for location section */
    .location-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .location-details {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .location-details .location-row {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 12px;
        padding: 8px 0;
        min-height: 44px;
        width: 100%;
    }
    
    .location-details .location-row i {
        margin-top: 0;
        flex-shrink: 0;
        width: 20px;
        text-align: center;
    }
    
    .location-details .location-social-row {
        justify-content: flex-start;
        width: 100%;
    }
    
    .location-map {
        width: 100%;
    }
    
    #franchisee-map-horizontal {
        height: 350px !important;
        min-height: 350px !important;
        width: 100% !important;
    }
    
    /* Ensure touch targets are adequate on tablet */
    .location-icon-circle {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .franchisee-page-centered {
        padding: 40px 0;
    }
    
    .hero-container {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
        text-align: center;
    }
    
    .logo-circle-centered {
        width: 160px;
        height: 160px;
    }
    
    .social-icon-circle {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .franchisee-name-hero {
        font-size: 32px;
    }
    
    .mission-statement-hero {
        font-size: 18px;
    }
    
    .franchisee-accordion-section {
        padding: 0 20px;
    }
    
    .accordion-row {
        flex-direction: column;
    }
    
    .accordion-content-horizontal {
        width: 100%;
    }
    
    .accordion-title-btn {
        min-width: 100%;
        border-right: none;
        border-bottom: 3px solid #e0e0e0;
    }
    
    .accordion-title-btn.active {
        border-bottom-color: var(--primary-blue);
    }
    
    .content-inner {
        padding: 25px 20px;
    }
    
    /* Remove side padding for location content to allow centering */
    .accordion-item-horizontal[data-section="location-contact"] .content-inner {
        padding: 25px 0;
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .team-member-horizontal {
        flex-direction: column;
        text-align: center;
    }
    
    .team-photo-circle {
        width: 130px;
        height: 130px;
        min-width: 130px;
    }
    
    .team-icons {
        justify-content: center;
    }
    
    /* Stacked layout for mobile - simple flexbox, centered */
    .location-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: center;
        width: 100%;
    }
    
    .location-details {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .location-details .location-row {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 12px;
        padding: 8px 0;
        min-height: 44px;
        width: 100%;
        font-size: 16px;
    }
    
    .location-details .location-row i {
        margin-top: 0;
        font-size: 20px;
        flex-shrink: 0;
        width: 20px;
        text-align: center;
    }
    
    .location-details .location-row span,
    .location-details .location-row a {
        padding: 4px 0;
    }
    
    .location-details .location-social-row {
        justify-content: flex-start;
        gap: 15px;
        margin-top: 10px;
        width: 100%;
    }
    
    .location-map {
        width: 100%;
    }
    
    #franchisee-map-horizontal {
        height: 300px !important;
        min-height: 300px !important;
        width: 100% !important;
        margin: 0 auto;
    }
    
    .location-icon-circle {
        width: 48px;
        height: 48px;
        font-size: 20px;
        min-width: 48px;
        min-height: 48px;
    }
}

/* Extra small mobile devices - Further optimizations */
@media (max-width: 480px) {
    .location-details {
        gap: 18px;
    }
    
    .location-details .location-row {
        font-size: 15px;
    }
    
    .location-details .location-row i {
        font-size: 18px;
    }
    
    #franchisee-map-horizontal {
        height: 250px !important;
        min-height: 250px !important;
    }
    
    .location-icon-circle {
        width: 46px;
        height: 46px;
        font-size: 18px;
        min-width: 46px;
        min-height: 46px;
    }
    
    .location-details .location-social-row {
        gap: 12px;
    }
}

/* ============================================
   OLD FRANCHISEE TEMPLATE STYLES (BACKUP)
   ============================================ */

/* Hero Section - New Design */
.franchisee-hero-new {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
    padding: 80px 0;
    color: var(--white);
}

.hero-content-new {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.franchisee-logo-large {
    margin-bottom: 30px;
}

.franchisee-logo-large img {
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    background: var(--white);
    padding: 15px;
}

.franchisee-hero-new .franchisee-name {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.mission-statement {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.hero-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: opacity 0.3s;
}

.hero-contact-item:hover {
    opacity: 0.8;
}

.hero-contact-item i {
    font-size: 18px;
}

.hero-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--white);
    color: var(--primary-purple);
    transform: translateY(-3px);
}

/* Who We Are Section */
.who-we-are-section {
    padding: 80px 0;
    background: var(--white);
}

.who-we-are-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.who-we-are-content p {
    margin-bottom: 20px;
}

.who-we-are-content p:last-child {
    margin-bottom: 0;
}

/* Management Team Section */
.management-team-section {
    padding: 80px 0;
    background: var(--section-background);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-member-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.team-member-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: var(--section-background);
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-info {
    padding: 30px;
}

.team-member-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 8px;
}

.team-member-title {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    font-weight: 600;
}

.team-member-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.team-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.team-contact-link:hover {
    color: var(--primary-purple);
}

.team-contact-link i {
    color: var(--primary-blue);
    font-size: 16px;
    width: 20px;
}

.team-member-social {
    display: flex;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.team-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--section-background);
    border-radius: 50%;
    color: var(--primary-purple);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s;
}

.team-social-link:hover {
    background: var(--primary-purple);
    color: var(--white);
    transform: translateY(-2px);
}

/* Location & Contact Section */
.location-contact-section {
    padding: 80px 0;
    background: var(--white);
}

.location-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
    align-items: start;
}

.location-info-column {
    padding: 30px;
    background: var(--section-background);
    border-radius: 12px;
}

.subsection-heading {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 25px;
}

.location-address {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.location-address i {
    color: var(--primary-blue);
    font-size: 20px;
    margin-top: 3px;
}

.location-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.location-contact-item i {
    color: var(--primary-blue);
    font-size: 18px;
    width: 20px;
}

.location-contact-item a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.location-contact-item a:hover {
    color: var(--primary-purple);
}

.location-social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #ddd;
}

.location-social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-purple);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    padding: 10px 15px;
    background: var(--white);
    border-radius: 6px;
}

.location-social-link:hover {
    background: var(--primary-purple);
    color: var(--white);
    transform: translateX(5px);
}

.location-social-link i {
    font-size: 20px;
}

.location-map-column {
    position: sticky;
    top: 100px;
}

/* Utility Classes */
.section-heading {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 30px;
}

.section-heading.centered {
    text-align: center;
}

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

/* News and Media Page Styles */
.news-media-page {
    padding: 80px 0;
    background-color: var(--section-background);
}

.news-media-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.news-media-container .page-title {
    font-family: "Open Sans", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--nav-text-color);
    text-align: center;
    margin-bottom: 60px;
}

.news-posts-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.news-post-item {
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-post-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.news-post-content {
    display: flex;
    gap: 30px;
    padding: 30px;
    align-items: flex-start;
}

.news-post-thumbnail {
    flex-shrink: 0;
    width: 200px;
    height: 260px;
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.news-post-thumbnail img,
.news-post-thumbnail canvas {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pdf-preview-canvas {
    display: block;
}

.news-post-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-post-title {
    font-family: "Open Sans", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--nav-text-color);
    margin: 0;
    line-height: 1.3;
}

.news-post-date {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #6B7280;
    margin: 0;
    margin-top: auto;
    padding-top: 60px;
}

.btn-view-pdf {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 12px 32px;
    border-radius: 100px;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
}

.btn-view-pdf:hover {
    background-color: var(--primary-blue);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(71, 164, 222, 0.3);
}

.no-posts-message {
    text-align: center;
    font-size: 18px;
    color: #6B7280;
    padding: 60px 20px;
}

/* PDF Viewer Modal */
.pdf-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.pdf-modal-content {
    position: relative;
    background-color: #FFFFFF;
    margin: 2% auto;
    width: 90%;
    max-width: 1200px;
    height: 90vh;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.pdf-modal-header {
    padding: 20px 30px;
    background-color: var(--primary-blue);
    color: #FFFFFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pdf-modal-header h3 {
    margin: 0;
    font-family: "Open Sans", sans-serif;
    font-size: 24px;
    font-weight: 600;
}

.pdf-modal-close {
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 36px;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.pdf-modal-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.pdf-modal-body {
    flex: 1;
    overflow: hidden;
}

.pdf-modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Single News Post Styles */
.single-news-post {
    padding: 80px 0;
    background-color: var(--section-background);
    min-height: 100vh;
}

.single-news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.back-link {
    margin-bottom: 30px;
}

.back-link a {
    color: var(--primary-blue);
    text-decoration: none;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.back-link a:hover {
    color: var(--primary-purple);
}

.single-news-article {
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.single-news-header {
    padding: 40px 40px 30px;
    border-bottom: 1px solid #E5E5E5;
}

.single-news-title {
    font-family: "Open Sans", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--nav-text-color);
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.single-news-date {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #6B7280;
    margin: 0;
}

.single-news-pdf-viewer {
    width: 100%;
    height: 800px;
    background: #525659;
}

.pdf-embed-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.single-news-actions {
    padding: 30px 40px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    background: #f9fafb;
}

.btn-download-pdf,
.btn-open-new-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 100px;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-download-pdf {
    background-color: var(--primary-blue);
    color: #FFFFFF;
    border: 2px solid var(--primary-blue);
}

.btn-download-pdf:hover {
    background-color: #3A8FC4;
    border-color: #3A8FC4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(71, 164, 222, 0.3);
}

.btn-open-new-tab {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-open-new-tab:hover {
    background-color: var(--primary-blue);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.no-attachment-message {
    padding: 60px 40px;
    text-align: center;
    font-size: 18px;
    color: #6B7280;
}

/* Default Single Post Styles */
.single-post-default {
    padding: 80px 0;
    background-color: var(--section-background);
    min-height: 100vh;
}

.single-post-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.entry-header {
    margin-bottom: 30px;
}

.entry-title {
    font-family: "Open Sans", sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--nav-text-color);
    margin-bottom: 15px;
}

.entry-meta {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    color: #6B7280;
}

.entry-meta span {
    margin-right: 15px;
}

.post-thumbnail {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.entry-content {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: var(--nav-text-color);
}

.entry-content p {
    margin-bottom: 20px;
}

/* Responsive Single Post */
@media (max-width: 1024px) {
    .single-news-post,
    .single-post-default {
        padding: 60px 0;
    }
    
    .single-news-container,
    .single-post-container {
        padding: 0 30px;
    }
    
    .single-news-pdf-viewer {
        height: 700px;
    }
}

@media (max-width: 768px) {
    .single-news-post,
    .single-post-default {
        padding: 40px 0;
    }
    
    .single-news-container,
    .single-post-container {
        padding: 0 20px;
    }
    
    .back-link {
        margin-bottom: 20px;
    }
    
    .back-link a {
        font-size: 15px;
    }
    
    .single-news-article {
        border-radius: 8px;
    }
    
    .single-news-header {
        padding: 25px 20px 20px;
    }
    
    .single-news-title {
        font-size: 24px;
        line-height: 1.4;
    }
    
    .single-news-date {
        font-size: 14px;
    }
    
    .single-news-pdf-viewer {
        height: 500px;
    }
    
    .single-news-actions {
        padding: 20px;
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-download-pdf,
    .btn-open-new-tab {
        justify-content: center;
        width: 100%;
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .entry-title {
        font-size: 28px;
    }
    
    .entry-content {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .single-news-post,
    .single-post-default {
        padding: 30px 0;
    }
    
    .single-news-container,
    .single-post-container {
        padding: 0 15px;
    }
    
    .single-news-header {
        padding: 20px 15px 15px;
    }
    
    .single-news-title {
        font-size: 20px;
    }
    
    .single-news-date {
        font-size: 13px;
    }
    
    .single-news-pdf-viewer {
        height: 400px;
    }
    
    .single-news-actions {
        padding: 15px;
        gap: 10px;
    }
    
    .btn-download-pdf,
    .btn-open-new-tab {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .entry-title {
        font-size: 24px;
    }
}

/* Responsive News and Media */
@media (max-width: 1024px) {
    .news-media-page {
        padding: 60px 0;
    }
    
    .news-media-container {
        padding: 0 30px;
    }
    
    .news-media-container .page-title {
        font-size: 36px;
        margin-bottom: 50px;
    }
    
    .news-posts-list {
        gap: 30px;
    }
    
    .news-post-content {
        gap: 25px;
        padding: 30px;
    }
    
    .news-post-thumbnail {
        width: 160px;
        height: 208px;
    }
    
    .news-post-title {
        font-size: 24px;
    }
    
    .news-post-date {
        font-size: 15px;
    }
    
    .btn-view-pdf {
        padding: 10px 28px;
        font-size: 15px;
        align-self: flex-start;
    }
}

@media (max-width: 768px) {
    .news-media-page {
        padding: 40px 0;
    }
    
    .news-media-container {
        padding: 0 20px;
    }
    
    .news-media-container .page-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .news-posts-list {
        gap: 25px;
    }
    
    .news-post-item {
        border-radius: 8px;
    }
    
    .news-post-content {
        flex-direction: column;
        gap: 20px;
        padding: 25px;
        align-items: center;
    }
    
    .news-post-thumbnail {
        width: 100%;
        max-width: 220px;
        height: 286px;
        margin: 0 auto;
    }
    
    .news-post-details {
        width: 100%;
        align-items: center;
        text-align: center;
        gap: 12px;
    }
    
    .news-post-title {
        font-size: 22px;
        line-height: 1.4;
    }
    
    .news-post-date {
        font-size: 14px;
    }
    
    .btn-view-pdf {
        padding: 12px 32px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
        text-align: center;
        max-width: 280px;
        align-self: center;
    }
    
    /* PDF Modal on Mobile */
    .pdf-modal-content {
        width: 98%;
        height: 98vh;
        margin: 1% auto;
        border-radius: 8px;
    }
    
    .pdf-modal-header {
        padding: 15px 15px;
    }
    
    .pdf-modal-header h3 {
        font-size: 16px;
        line-height: 1.3;
        padding-right: 10px;
    }
    
    .pdf-modal-close {
        width: 36px;
        height: 36px;
        font-size: 32px;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .news-media-page {
        padding: 30px 0;
    }
    
    .news-media-container {
        padding: 0 15px;
    }
    
    .news-media-container .page-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .news-posts-list {
        gap: 20px;
    }
    
    .news-post-content {
        padding: 20px;
        gap: 15px;
    }
    
    .news-post-thumbnail {
        max-width: 180px;
        height: 234px;
    }
    
    .news-post-title {
        font-size: 20px;
    }
    
    .news-post-date {
        font-size: 13px;
    }
    
    .btn-view-pdf {
        padding: 10px 24px;
        font-size: 14px;
        width: 100%;
        max-width: none;
        align-self: center;
        text-align: center;
    }
    
    .pdf-modal-header h3 {
        font-size: 14px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .franchisee-hero-new {
        padding: 60px 0;
    }
    
    .franchisee-hero-new .franchisee-name {
        font-size: 32px;
    }
    
    .mission-statement {
        font-size: 18px;
    }
    
    .franchisee-logo-large img {
        max-width: 150px;
    }
    
    .hero-contact-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .who-we-are-section,
    .management-team-section,
    .location-contact-section {
        padding: 60px 0;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-member-image {
        height: 250px;
    }
    
    .location-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .location-map-column {
        position: static;
    }
    
    .section-heading {
        font-size: 28px;
    }
    
    .subsection-heading {
        font-size: 20px;
    }
}