body, html {
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    color: white;
    overflow-x: hidden;
    background-color: #f8f9fa;
}

.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('img/hero.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    padding-top: 80px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 40px;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

nav::after {
    display: none;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
    position: relative;
}

.logo img {
    height: 22px; /* Reduced from 45px to approximately half size */
    margin-right: 15px;
}

.logo span {
    font-size: 1.8em;
    font-weight: 700;
    letter-spacing: 1px;
    color: white;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
}

.nav-links li {
    margin-left: 30px;
    position: relative;
}

.nav-links li:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #3498db;
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-links li:hover:after {
    width: 100%;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 1.05em;
    font-weight: 500;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

/* Global Button Styles - Unified approach */
.button, .about-btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    margin: 0 15px;
    border: 2px solid transparent;
    cursor: pointer;
}

.button.primary, .about-btn:not(.outline) {
    background: #3498db;
    color: white;
}

.button.primary:hover, .about-btn:not(.outline):hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

.button.secondary, .about-btn.outline {
    background: transparent;
    border: 2px solid #3498db;
    color: #3498db;
    box-shadow: none;
}

.button.secondary:hover, .about-btn.outline:hover {
    background: rgba(52, 152, 219, 0.1);
    transform: translateY(-5px);
}

.button.accent, .pink-button {
    background: #e91e63;
    color: white;
}

.button.accent:hover, .pink-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 35px;
    margin-bottom: 10px;
}

.hero-buttons .button {
    margin: 0;
    min-width: 180px;
    padding: 15px 38px;
}

/* About Section CTA */
.about-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 35px;
    margin-bottom: 10px;
    justify-content: flex-start;
}

.about-cta .button {
    margin: 0;
    min-width: 180px;
    padding: 13px 32px;
}

/* Override old styles */
.blue-button {
    background: #3498db !important;
}

.pink-button {
    background: #e91e63 !important;
}

.nav-button {
    font-size: 0.95em;
    padding: 12px 25px;
    margin-top: 0;
    margin-left: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Media queries for responsive buttons */
@media (max-width: 768px) {
    .button, .about-btn {
        padding: 14px 28px;
        font-size: 1em;
        margin: 10px 0;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .button {
        width: 80%;
        margin: 8px 0;
    }
    
    .about-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .about-btn {
        margin: 12px 0;
        width: 80%;
        padding: 14px 25px;
    }

    .ambient-shape-1,
    .ambient-shape-2,
    .ambient-shape-feature-1, 
    .ambient-shape-feature-2 {
        opacity: 0.25;
        filter: blur(70px);
    }

    .about-card {
        padding: 35px;
        margin-bottom: 15px;
        min-height: 160px;
    }
}

/* Mobile Styles */
.menu-icon {
    display: none;
    font-size: 2em;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    transition: transform 0.3s ease;
    height: 40px;
    width: 40px;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 90vh; /* Reduced from 100vh */
        padding-top: 70px; /* Reduced from 80px */
        justify-content: flex-start;
    }
    
    nav {
        padding: 12px 15px; /* Reduced from 15px 20px */
        position: fixed;
        top: 0;
        left: 0;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 999;
    }
    
    .logo {
        z-index: 1001;
        position: relative;
    }
    
    .logo img {
        height: 18px; /* Reduced from 35px to half size */
    }
    
    .logo span {
        font-size: 1.5em;
    }

    .hero-content {
        text-align: center;
        padding: 20px 20px 0;
        margin: 0;
        height: auto;
        align-items: flex-start;
        justify-content: flex-start;
    }
    
    .hero-content h1 {
        font-size: 1.6em; /* Reduced from 1.8em */
        line-height: 1.3;
        margin-top: 10px;
        margin-bottom: 15px; /* Reduced from 20px */
    }
    
    .hero-content p {
        font-size: 0.95em; /* Reduced from 1em */
        line-height: 1.5;
        margin-bottom: 20px; /* Reduced from 25px */
    }

    .nav-links {
        display: none;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 80px 0 50px;
        z-index: 1000;
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
    }

    .nav-links.active {
        display: flex;
        opacity: 1;
    }

    .nav-links li {
        margin: 15px 0;
        text-align: center;
        transform: translateY(20px);
        opacity: 0;
        transition: all 0.4s ease;
    }
    
    .nav-links.active li {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }

    .nav-links a {
        font-size: 1.3em;
        padding: 10px;
        display: block;
    }

    .nav-links .nav-button {
        display: block;
        margin: 20px auto;
        font-size: 1.1em;
        padding: 12px 30px;
    }
    
    .menu-icon {
        display: flex;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        align-self: flex-start;
        margin-top: 0;
    }

    .hero-buttons .button {
        width: 80%;
        margin: 6px 0; /* Reduced from 8px */
        padding: 10px 18px; /* Reduced from 12px 20px */
        font-size: 1em; /* Reduced from 1.1em */
    }
    
    .nav-links li:first-child {
        margin-top: 0;
    }
}

/* Add a specific style for extra small devices */
@media (max-width: 480px) {
    .hero {
        min-height: 80vh; /* Even smaller for very small screens */
    }
    
    .logo img {
        height: 15px; /* Reduced from 30px to half size */
    }
    
    .hero-content h1 {
        font-size: 1.5em;
        margin-bottom: 12px;
    }
    
    .hero-content p {
        font-size: 0.9em;
        margin-bottom: 15px;
    }
    
    .hero-buttons .button {
        padding: 8px 16px;
        font-size: 0.95em;
    }
}

/* Desktop Styles */
@media (min-width: 769px) {
    .menu-icon {
        display: none;
    }
    
    .nav-links {
        display: flex;
        opacity: 1;
        position: static;
        background-color: transparent;
        height: auto;
        padding: 0;
        transition: none;
        width: auto;
    }
    
    .nav-links li {
        opacity: 1;
        transform: none;
        transition: none;
    }
    
    .nav-links .button.nav-button {
        display: inline-block;
    }
    
    .nav-scrolled {
        padding: 15px 40px;
        background-color: rgba(0, 0, 0, 0.85);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }
    
    .nav-scrolled .logo img {
        height: 20px; /* Reduced from 40px to half size */
    }
    
    .nav-scrolled .logo span {
        font-size: 1.6em;
    }
}

/* About Section Styles */
.about-section {
    background-color: #f8f9fa;
    background-image: linear-gradient(to right, rgba(255,255,255,0.97), rgba(255,255,255,0.92)), url('img/pattern-bg.jpg');
    background-size: cover;
    background-attachment: fixed;
    padding: 40px 0 80px;
    color: #333;
    margin: 0;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0 0 0;
    position: relative;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
    margin-top: 0;
}

.section-header h2 {
    font-size: 2.5em;
    font-weight: 700;
    color: #2c3e50;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-header p {
    color: #7f8c8d;
    font-size: 1.25em;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
    font-style: italic;
}

/* About Flex Container for side-by-side layout */
.about-flex-container {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 30px;
    width: 100%;
    justify-content: space-between;
    box-sizing: border-box;
}

.about-image {
    flex: 0 0 48%;
    margin: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-content {
    flex: 0 0 48%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.about-content .about-cta {
    text-align: left;
    margin-top: 20px;
}

.about-content .button {
    margin-left: 0;
    margin-right: 15px;
}

.about-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: flex-start;
    min-height: 180px;
    height: auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: #3498db;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.25);
}

.icon-wrapper svg {
    width: 30px;
    height: 30px;
    color: white;
}

.about-text {
    flex-grow: 1;
    padding: 5px 0;
}

.about-text h3 {
    font-size: 1.4em;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #2c3e50;
    line-height: 1.3;
}

.about-text p {
    font-size: 1.05em;
    line-height: 1.7;
    margin: 0;
    color: #7f8c8d;
}

.about-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(52, 152, 219, 0.4);
}

.about-btn.outline:hover {
    background: rgba(52, 152, 219, 0.1);
}

/* Enhanced ambient shapes for seamless flow */
.ambient-shape-1,
.ambient-shape-2,
.ambient-shape-feature-1, 
.ambient-shape-feature-2 {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    opacity: 0.35;
    filter: blur(85px);
}

.ambient-shape-1 {
    top: -150px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: rgba(52, 152, 219, 0.3);
}

.ambient-shape-2 {
    bottom: -150px;
    left: -100px;
    width: 600px;
    height: 600px;
    background: rgba(233, 30, 99, 0.2);
}

.ambient-shape-feature-1 {
    width: 550px;
    height: 550px;
    background: rgba(233, 30, 99, 0.2);
    top: -150px;
    right: -120px;
}

.ambient-shape-feature-2 {
    width: 650px;
    height: 650px;
    background: rgba(52, 152, 219, 0.3);
    bottom: -180px;
    left: -150px;
}

@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 25px 0 40px;
    }
    
    .container {
        padding: 0 15px 0 15px;
    }
    
    .section-header {
        margin-bottom: 20px;
    }
    
    .section-header h2 {
        font-size: 2em;
        margin-bottom: 10px;
    }
    
    .section-header p {
        font-size: 1.1em;
    }
    
    .about-flex-container {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .about-image {
        flex: 0 0 100%;
        margin: 0 auto 20px;
        padding: 0;
    }
    
    .about-image-caption h3 {
        font-size: 1.3em;
        text-align: center;
        margin-bottom: 8px;
    }
    
    .about-image-caption p {
        text-align: center;
        margin-bottom: 10px;
    }
    
    .about-image-stats {
        justify-content: space-between;
        padding: 12px;
        margin-top: 10px;
    }
    
    .stat-item {
        padding: 0 5px;
    }
    
    .stat-number {
        font-size: 1.6em;
    }
    
    .about-content {
        flex: 0 0 100%;
    }
    
    .about-content .about-cta {
        text-align: center;
        margin-top: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .about-content .button {
        margin: 8px;
        padding: 12px 25px;
    }
    
    .about-content-paragraph {
        gap: 12px;
    }
    
    .about-paragraph {
        font-size: 1em;
        padding-bottom: 12px;
        line-height: 1.5;
    }
    
    .about-icon {
        width: 30px;
        height: 30px;
        margin-right: 12px;
    }
    
    .features-section-minimal {
        padding: 25px 0 40px;
        margin: 0;
    }
    
    .features-title-minimal {
        font-size: 1.8em;
        margin-bottom: 25px;
        margin-top: 0;
    }
    
    .features-grid-minimal {
        gap: 20px;
    }
    
    .feature-item-minimal {
        margin-bottom: 15px;
    }
    
    .feature-icon-minimal {
        width: 45px;
        height: 45px;
        margin-bottom: 15px;
    }
    
    .feature-icon-minimal svg {
        width: 22px;
        height: 22px;
    }
    
    .feature-item-minimal h3 {
        font-size: 1.15em;
        margin-bottom: 8px;
    }
    
    .feature-item-minimal p {
        font-size: 0.9em;
        line-height: 1.5;
    }
    
    .loyalty-awards-section {
        padding: 25px 0 40px;
    }
    
    .loyalty-content {
        gap: 15px;
        margin: 0 auto 20px;
    }
    
    .loyalty-item {
        padding: 15px;
    }
    
    .loyalty-icon {
        width: 35px;
        height: 35px;
        margin-right: 15px;
    }
    
    .loyalty-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .loyalty-text h3 {
        font-size: 1.1em;
        margin-bottom: 8px;
    }
    
    .loyalty-text p {
        font-size: 0.9em;
        line-height: 1.5;
    }
    
    .award-list li {
        margin-bottom: 5px;
        font-size: 0.9em;
    }
    
    .loyalty-cta {
        margin-top: 20px;
    }
    
    .loyalty-cta .button {
        padding: 12px 25px;
        margin: 8px;
    }
}

/* Hero Content Styles */
.hero-content {
    text-align: left;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 70vh;
    width: 100%;
}

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

.hero-content h1 {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.5;
    max-width: 600px;
}

/* Minimalist Features Section Styles (Inspired by f.JPG) */
.features-section-minimal {
    background-color: #f8f9fa;
    background-image: linear-gradient(to right, rgba(255,255,255,0.97), rgba(255,255,255,0.92)), url('img/pattern-bg.jpg');
    background-size: cover;
    background-attachment: fixed;
    max-width: 100%;
    position: relative;
    overflow: hidden;
    padding: 40px 0 80px;
    margin: 0;
}

.features-title-minimal,
.features-grid-minimal {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.features-title-minimal {
    font-size: 2.2em;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 0;
}

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

.feature-item-minimal {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0;
    padding-top: 0;
}

.feature-icon-minimal {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    margin-top: 0;
}

.feature-icon-minimal.pink {
    background-color: #e91e63;
}

.feature-icon-minimal svg {
    width: 30px;
    height: 30px;
    color: white;
}

.feature-item-minimal h3 {
    font-size: 1.25em;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 12px 0;
}

.feature-item-minimal p {
    font-size: 0.95em;
    line-height: 1.6;
    color: #5f6368;
    margin: 0;
}

@media (max-width: 1024px) {
    .features-grid-minimal {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .features-section-minimal {
        padding: 25px 0 40px;
        margin: 0;
    }
    
    .features-title-minimal {
        font-size: 1.8em;
        margin-bottom: 25px;
        margin-top: 0;
    }
    
    .features-grid-minimal {
        gap: 30px;
    }
    
    .feature-icon-minimal {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon-minimal svg {
        width: 25px;
        height: 25px;
    }
}

/* About Section Paragraph Style */
.about-content-paragraph {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

/* About Image Style */
.about-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.about-image-caption {
    text-align: left;
    padding: 15px 10px;
    width: 100%;
    box-sizing: border-box;
}

.about-image-caption h3 {
    font-size: 1.5em;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 10px 0;
}

.about-image-caption p {
    color: #5f6368;
    font-size: 1.05em;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.about-image-stats {
    display: flex;
    justify-content: flex-start;
    margin-top: 15px;
    padding: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background-color: rgba(52, 152, 219, 0.05);
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 auto;
    padding: 0;
    margin-right: 40px;
}

.stat-item:last-child {
    margin-right: 0;
}

.stat-number {
    font-size: 1.8em;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9em;
    color: #7f8c8d;
    text-align: center;
}

.about-paragraph {
    display: flex;
    align-items: center;
    margin: 0;
    font-size: 1.1em;
    line-height: 1.7;
    color: #3a3a3a;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 15px;
}

.about-paragraph:last-child {
    border-bottom: none;
}

.about-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #3498db;
    border-radius: 50%;
    margin-right: 18px;
    padding: 8px;
}

.about-icon svg {
    width: 100%;
    height: 100%;
    stroke: white;
}

.about-paragraph strong {
    color: #1d1d1d;
    font-weight: 700;
    margin-right: 8px;
    font-size: 1.05em;
}

/* Ensure consistent container sizes across sections */
.container, 
.features-title-minimal,
.features-grid-minimal {
    max-width: 1200px;
    padding-left: 0;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .container, 
    .features-title-minimal,
    .features-grid-minimal {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero-content {
        text-align: left;
        padding: 20px 0 0;
        margin: 0;
        height: auto;
        align-items: flex-start;
        justify-content: flex-start;
    }
    
    .hero .container {
        height: auto;
        padding-top: 80px;
    }
    
    .features-section-minimal {
        padding: 25px 0 40px;
        margin: 0;
    }
    
    .about-content-paragraph {
        gap: 20px;
    }
    
    .about-image {
        margin: 0 auto 30px;
        padding: 0 15px;
    }
    
    .about-img {
        border-radius: 10px;
    }
    
    .about-paragraph {
        font-size: 1em;
        padding-bottom: 15px;
        line-height: 1.6;
    }
    
    .about-icon {
        width: 32px;
        height: 32px;
        margin-right: 15px;
    }
}

/* Section spacing for seamless flow */
.hero, .about-section, .features-section-minimal, .loyalty-awards-section {
    position: relative;
    overflow: hidden;
}

/* Loyalty & Awards Section Styles */
.loyalty-awards-section {
    background-color: #f8f9fa;
    background-image: linear-gradient(to right, rgba(255,255,255,0.97), rgba(255,255,255,0.92)), url('img/pattern-bg.jpg');
    background-size: cover;
    background-attachment: fixed;
    padding: 40px 0 80px;
    color: #333;
    margin: 0;
}

.ambient-shape-loyalty-1 {
    width: 550px;
    height: 550px;
    background: rgba(52, 152, 219, 0.3);
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    opacity: 0.35;
    filter: blur(85px);
    top: -150px;
    right: -120px;
}

.ambient-shape-loyalty-2 {
    width: 650px;
    height: 650px;
    background: rgba(233, 30, 99, 0.2);
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    opacity: 0.35;
    filter: blur(85px);
    bottom: -180px;
    left: -150px;
}

.loyalty-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 850px;
    margin: 0 auto 30px;
}

.loyalty-item {
    display: flex;
    align-items: flex-start;
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.loyalty-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.loyalty-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e91e63;
    margin-right: 25px;
    flex-shrink: 0;
}

.loyalty-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.loyalty-text {
    flex-grow: 1;
}

.loyalty-text h3 {
    font-size: 1.3em;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 10px 0;
}

.loyalty-text p {
    font-size: 1em;
    line-height: 1.6;
    color: #3a3a3a;
    margin: 0;
}

.award-list {
    list-style-type: none;
    padding: 0;
    margin: 5px 0 0 0;
}

.award-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 6px;
    line-height: 1.5;
    color: #3a3a3a;
}

.award-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e91e63;
    font-weight: bold;
    font-size: 1.2em;
}

.loyalty-cta {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.loyalty-cta .button {
    margin: 0;
}

@media (max-width: 768px) {
    .loyalty-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .loyalty-cta .button {
        width: 100%;
        max-width: 280px;
    }
}

/* SDG Section Styles */
.sdg-intro {
    font-size: 1.25em;
    color: #3a3a3a;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.sdg-item {
    position: relative;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.sdg-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.sdg-icon {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.65) 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.sdg-icon img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.sdg-item:hover .sdg-icon img {
    transform: scale(1.08);
}

.sdg-icon::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--sdg-color, #3498db);
    transform: scaleX(0.3);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.sdg-item:hover .sdg-icon::after {
    transform: scaleX(1);
}

.sdg-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
}

.sdg-content h3 {
    font-size: 1.3em;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 15px 0;
    line-height: 1.3;
    position: relative;
    padding-bottom: 12px;
}

.sdg-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--sdg-color, #3498db);
    transition: width 0.3s ease;
}

.sdg-item:hover .sdg-content h3::after {
    width: 80px;
}

.sdg-content p {
    font-size: 1em;
    line-height: 1.7;
    color: #5f6368;
    margin: 0;
    flex-grow: 1;
}

/* SDG Color Variables */
.sdg-item:nth-child(1) {
    --sdg-color: #f36d25; /* SDG 9 color */
}

.sdg-item:nth-child(2) {
    --sdg-color: #cf8d2a; /* SDG 12 color */
}

.sdg-item:nth-child(3) {
    --sdg-color: #3f7e44; /* SDG 13 color */
}

.sdg-item:nth-child(4) {
    --sdg-color: #ef402b; /* SDG 5 color */
}

.sdg-item:nth-child(5) {
    --sdg-color: #8f1838; /* SDG 8 color */
}

.sdg-item:nth-child(6) {
    --sdg-color: #c5192d; /* SDG 4 color */
}

/* SDG Goals Section */
.sdg-goals-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Restore the SDG rainbow gradient at the top */
.sdg-goals-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, 
        #ef402b 0%, #ef402b 16.66%, 
        #d09d2c 16.66%, #d09d2c 33.33%, 
        #3f7e44 33.33%, #3f7e44 50%, 
        #c5192d 50%, #c5192d 66.66%,
        #ef402b 66.66%, #ef402b 83.33%,
        #8f1838 83.33%, #8f1838 100%
    );
    z-index: 2;
}

.sdg-goals-section .container {
    max-width: 1400px; /* Wider container for better space utilization */
    width: 92%; /* Use more screen space */
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}

/* Add a subtle background pattern to the SDG section */
.sdg-goals-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(52, 152, 219, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 0;
}

.sdg-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
    gap: 50px; /* Increased gap for better spacing */
    position: relative;
    z-index: 1;
    justify-content: center;
}

.sdg-row:last-child {
    margin-bottom: 0;
}

.sdg-row-reverse {
    flex-direction: row-reverse;
}

/* Ensure the images and text take up appropriate amount of space */
.sdg-image {
    flex: 1;
    flex-basis: 45%;
    max-width: 45%;
    padding: 0;
}

.sdg-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.sdg-row:hover .sdg-image img {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.sdg-text {
    flex: 1;
    flex-basis: 45%;
    max-width: 45%;
    padding: 0;
}

.sdg-text h3 {
    font-size: 2em;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.sdg-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--sdg-color, #3498db);
    transition: width 0.3s ease;
}

.sdg-row:hover .sdg-text h3::after {
    width: 100px;
}

.sdg-text p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #5f6368;
    margin-bottom: 20px;
}

.sdg-stats {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    gap: 20px;
}

.sdg-stat {
    flex: 1;
    min-width: 100px;
    text-align: center;
    padding: 15px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.sdg-stat:hover {
    transform: translateY(-5px);
}

.sdg-stat-number {
    font-size: 2em;
    font-weight: 700;
    color: var(--sdg-color, #3498db);
    margin-bottom: 8px;
}

.sdg-stat-label {
    font-size: 0.9em;
    color: #5f6368;
}

/* Interactive SDG Circle */
.sdg-circle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0 50px;
    position: relative;
}

.sdg-circle {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    animation: scaleIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    transform: scale(0.8);
    opacity: 0;
}

.sdg-circle-image {
    width: 80%;
    height: 80%;
    border-radius: 50%;
    overflow: hidden;
}

.sdg-circle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sdg-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 2px dashed rgba(52, 152, 219, 0.15);
    box-shadow: 0 0 80px rgba(52, 152, 219, 0.1);
    perspective: 800px;
    transform-style: preserve-3d;
}

.sdg-planet {
    position: absolute;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.8);
}

.sdg-planet:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.sdg-planet img {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

.sdg-planet:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.sdg-planet:nth-child(2) {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.sdg-planet:nth-child(3) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.sdg-planet:nth-child(4) {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.sdg-planet:nth-child(5) {
    top: 15%;
    right: 15%;
}

.sdg-planet:nth-child(6) {
    bottom: 15%;
    right: 15%;
}

@media (max-width: 768px) {
    .sdg-circle {
        width: 200px;
        height: 200px;
    }
    
    .sdg-orbit {
        width: 340px;
        height: 340px;
    }
    
    .sdg-planet {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 576px) {
    .sdg-circle {
        width: 160px;
        height: 160px;
    }
    
    .sdg-orbit {
        width: 280px;
        height: 280px;
    }
    
    .sdg-planet {
        width: 50px;
        height: 50px;
    }
}

/* Footer Styles */
footer {
    background-color: #1a1a2e; /* Changed from #2c3e50 to a deep midnight blue */
    color: #ecf0f1; /* Light grey text */
    padding: 60px 0 20px;
    margin-top: auto; /* Pushes footer to bottom if content is short */
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo,
.footer-links,
.footer-contact,
.footer-social {
    flex: 1;
    min-width: 220px; /* Ensures columns don't get too squeezed */
    margin-bottom: 20px;
}

.footer-logo img {
    height: 22px; /* Reduced from 50px to approximately half size */
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 0.9em;
    color: #bdc3c7; /* Slightly darker grey for tagline */
    line-height: 1.6;
}

footer h4 {
    font-size: 1.3em;
    color: white;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #3498db; /* Accent color for underline */
}

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

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

.footer-links ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links ul li a:hover {
    color: #3498db; /* Accent color on hover */
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 10px;
    font-size: 0.95em;
    line-height: 1.7;
}

.footer-social a {
    display: inline-block;
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.footer-social img {
    width: 32px; /* Adjust as needed */
    height: 32px;
}

.footer-social a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e; /* Slightly lighter border */
    font-size: 0.9em;
    color: #bdc3c7;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo,
    .footer-links,
    .footer-contact,
    .footer-social {
        min-width: 100%; /* Full width on smaller screens */
        margin-bottom: 30px;
    }

    footer h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social a {
        margin: 0 10px;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 15px;
    }
    .footer-content {
        gap: 20px;
        margin-bottom: 30px;
    }
    .footer-logo img {
        height: 18px; /* Reduced from 40px to match header logo mobile size */
    }
    footer h4 {
        font-size: 1.2em;
    }
    .footer-social img {
        width: 28px;
        height: 28px;
    }
}

/* CTA Section Styles */
.cta-section {
    background-color: #3498db;
    color: white;
    padding: 70px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.95) 0%, rgba(41, 128, 185, 0.95) 100%);
    z-index: 0;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 45px;
    margin-bottom: 10px;
    justify-content: center;
}

.cta-buttons .button {
    margin: 0;
    min-width: 180px;
    padding: 15px 38px;
}

.cta-section .button {
    font-size: 1.1em;
    padding: 16px 40px;
    border-radius: 30px;
    font-weight: 700;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-section .button.primary {
    background-color: #e91e63; /* Pink background */
    color: white;
    border: 2px solid #e91e63;
}

.cta-section .button.primary:hover {
    background-color: #d81557; /* Darker pink on hover */
    border-color: #d81557;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

.cta-section .button.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-section .button.secondary:hover {
    background-color: rgba(255,255,255,0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.25);
}

@media (max-width: 768px) {
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-section h2 {
        font-size: 2em;
    }
    
    .cta-section p {
        font-size: 1.1em;
        margin-bottom: 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        margin-top: 30px;
        gap: 15px;
    }
    
    .cta-section .button {
        width: 80%;
        max-width: 280px;
        padding: 14px 25px;
        font-size: 1em;
    }
}

/* Smaller Hero for Inner Pages */
.hero-small {
    height: 50vh; /* Reduced height */
    min-height: 350px; /* Minimum height */
    padding-top: 80px;
    padding-bottom: 40px;
}

.hero-small .hero-content {
    height: auto; /* Allow content to determine height */
    justify-content: center; /* Center content vertically */
    padding-top: 20px;
    padding-bottom: 40px;
}

.hero-small .hero-content h1 {
    font-size: 2.8em; /* Slightly smaller H1 for sub-pages */
    margin-bottom: 15px;
}

.hero-small .hero-content p {
    font-size: 1.1em; /* Slightly smaller paragraph */
    margin-bottom: 25px;
    max-width: 550px; /* Adjust max-width if needed */
}

.hero-small .hero-buttons .button {
    padding: 12px 30px;
    font-size: 1em;
}

/* Responsive adjustments for smaller hero */
@media (max-width: 768px) {
    .hero-small {
        height: auto;
        min-height: 300px; /* Min height for mobile */
        padding-top: 70px; /* Ensure nav doesn't overlap too much */
    }

    .hero-small .hero-content h1 {
        font-size: 2em; /* Adjusted H1 for mobile */
    }

    .hero-small .hero-content p {
        font-size: 1em; /* Adjusted paragraph for mobile */
    }
    .hero-small .hero-buttons {
        flex-direction: column; /* Stack them vertically */
        align-items: center;   /* Center them when stacked */
        gap: 10px; /* Keep the gap between buttons */
    }
    .hero-small .hero-buttons .button {
        width: 70%; /* Set a width to fill space better */
        margin: 8px 0; /* Adjust margin for stacked layout */
        padding: 12px 25px; /* Slightly more padding */
        font-size: 1em;   /* Match general mobile button font size */
    }
}

/* Slider Container for Before-After Comparison */
.slider-container {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 20px;
    cursor: col-resize;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    touch-action: none;
    opacity: 0.95;
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.slider-container:hover, 
.slider-container:focus,
.slider-container.slider-active {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
    outline: none;
}

.slider-container:focus {
    box-shadow: 0 18px 40px rgba(52, 152, 219, 0.25);
}

.slider-container.slider-active .slider-handle::before {
    width: 52px;
    height: 52px;
    background: #f8f8f8;
    box-shadow: 0 0 20px rgba(52, 152, 219, 0.8);
}

.slider-container.slider-active .slider-handle::after {
    color: #2980b9;
    font-size: 24px;
}

/* The base layer (After image) */
.slider-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* The top layer (Before image) with clip-path */
.slider-before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    clip-path: inset(0 50% 0 0); /* Initially show left 50% */
    -webkit-clip-path: inset(0 50% 0 0); /* Safari support */
}

.slider-before img,
.slider-after img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%; /* Initial position */
    height: 100%;
    width: 3px;
    background: #fff;
    cursor: col-resize;
    z-index: 3;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.slider-handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.slider-handle::after {
    content: '↔';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #3498db;
    font-size: 20px;
    font-weight: bold;
    z-index: 4;
    transition: all 0.3s ease;
}

.slider-handle.hover::before,
.slider-handle:hover::before {
    width: 48px;
    height: 48px;
    background: #f8f8f8;
    box-shadow: 0 0 15px rgba(52, 152, 219, 0.7);
}

.slider-handle.hover::after,
.slider-handle:hover::after {
    color: #2980b9;
    font-size: 22px;
}

.slider-label {
    position: absolute;
    top: 20px;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
    z-index: 10;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-10px);
}

.slider-container:hover .slider-label,
.slider-container:focus .slider-label,
.slider-container.slider-active .slider-label {
    opacity: 1;
    transform: translateY(0);
}

.slider-before .slider-label {
    left: 20px;
    transition-delay: 0.1s;
}

.slider-after .slider-label {
    right: 20px;
    transition-delay: 0.2s;
}

/* Slider animation */
.slider-before {
    transition: clip-path 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition: -webkit-clip-path 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-handle {
    transition: left 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Add a visual guide for the slider */
.slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    z-index: 5;
    pointer-events: none;
}

/* Make the slider responsive */
@media (max-width: 768px) {
    .slider-container {
        margin-bottom: 15px;
        border-radius: 10px;
    }
    
    .slider-handle::before {
        width: 36px;
        height: 36px;
    }
    
    .slider-handle::after {
        font-size: 16px;
    }
    
    .slider-handle:hover::before,
    .slider-handle.hover::before {
        width: 40px;
        height: 40px;
    }
    
    .slider-container.slider-active .slider-handle::before {
        width: 44px;
        height: 44px;
    }
    
    .slider-label {
        padding: 6px 12px;
        font-size: 12px;
        top: 15px;
    }
    
    .slider-before .slider-label {
        left: 10px;
    }
    
    .slider-after .slider-label {
        right: 10px;
    }
    
    .slider-container::after {
        border-radius: 10px;
    }
}

/* Additional SDG Styles for more polish */
.sdg-icon .placeholder-text,
.sdg-planet .placeholder-text {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

/* Add subtle animations to SDG elements */
.sdg-item {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.sdg-item:nth-child(1) { animation-delay: 0.1s; }
.sdg-item:nth-child(2) { animation-delay: 0.2s; }
.sdg-item:nth-child(3) { animation-delay: 0.3s; }
.sdg-item:nth-child(4) { animation-delay: 0.4s; }
.sdg-item:nth-child(5) { animation-delay: 0.5s; }
.sdg-item:nth-child(6) { animation-delay: 0.6s; }

.sdg-circle {
    animation: scaleIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    transform: scale(0.8);
    opacity: 0;
}

.sdg-planet {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sdg-row {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.sdg-row:nth-child(1) { animation-delay: 0.3s; }
.sdg-row:nth-child(2) { animation-delay: 0.5s; }
.sdg-row:nth-child(3) { animation-delay: 0.7s; }

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

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Improved SDG orbit with 3D effect */
.sdg-orbit {
    border: 2px dashed rgba(52, 152, 219, 0.15);
    box-shadow: 0 0 80px rgba(52, 152, 219, 0.1);
    perspective: 800px;
    transform-style: preserve-3d;
}

/* SDG icon highlight effect */
.sdg-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

/* More depth to the SDG cards */
.sdg-content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
}

/* Fix media queries for better sizing on all displays */
@media (max-width: 1200px) {
    .sdg-image, .sdg-text {
        flex-basis: 46%;
        max-width: 46%;
    }
}

@media (max-width: 992px) {
    .sdg-goals-section .container {
        width: 96%;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .sdg-row {
        flex-direction: column;
        margin-bottom: 60px;
        gap: 30px;
    }
    
    .sdg-row.sdg-row-reverse {
        flex-direction: column;
    }
    
    .sdg-image, .sdg-text {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }
    
    .sdg-text h3 {
        font-size: 1.8em;
        text-align: center;
    }
    
    .sdg-text h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .sdg-text p {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .sdg-goals-section {
        padding: 50px 0;
    }
    
    .sdg-goals-section .container {
        width: 92%;
    }
    
    .sdg-row {
        gap: 25px;
        margin-bottom: 50px;
    }
    
    .sdg-stats {
        gap: 10px;
        justify-content: center;
    }
    
    .sdg-stat {
        flex: 0 1 calc(33% - 10px);
        min-width: 90px;
        padding: 12px 8px;
    }
    
    .sdg-text h3 {
        font-size: 1.6em;
    }
    
    .sdg-stat-number {
        font-size: 1.8em;
    }
}

/* Home Showcase Sections Styles */
.home-showcase-section {
    padding: 70px 0;
    position: relative;
    overflow: hidden;
    color: #2c3e50;
    background-color: #ffffff;
}

.home-showcase-section.alt-bg {
    background-color: #f8f9fa;
    background-image: linear-gradient(to right, rgba(255,255,255,0.97), rgba(255,255,255,0.92)), url('img/pattern-bg.jpg');
    background-size: cover;
    background-attachment: fixed;
}

.showcase-content-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.showcase-content-flex.reverse {
    flex-direction: row-reverse;
}

.showcase-text {
    flex: 1;
    max-width: 50%;
}

.showcase-image {
    flex: 1;
    max-width: 45%;
}

.showcase-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-content-flex:hover .showcase-image img {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.section-title {
    font-size: 2.2em;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #3498db;
    transition: width 0.3s ease;
}

.showcase-content-flex.reverse .section-title::after {
    background: #e91e63;
}

.showcase-content-flex:hover .section-title::after {
    width: 100px;
}

.section-subtitle {
    font-size: 1.1em;
    line-height: 1.7;
    color: #5f6368;
    margin-bottom: 25px;
}

.showcase-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.showcase-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 1.05em;
    color: #3a3a3a;
}

.showcase-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.showcase-content-flex.reverse .showcase-list li::before {
    color: #e91e63;
}

.sdg-mini-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
}

.sdg-mini-icons img {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.sdg-mini-icons img:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .sdg-mini-icons {
        justify-content: center;
        gap: 10px;
    }
    
    .sdg-mini-icons img {
        width: 45px;
        height: 45px;
    }
}

/* Responsive styles for showcase sections */
@media (max-width: 992px) {
    .showcase-content-flex {
        flex-direction: column;
        gap: 30px;
    }
    
    .showcase-content-flex.reverse {
        flex-direction: column;
    }
    
    .showcase-text, 
    .showcase-image {
        max-width: 100%;
    }
    
    .section-title {
        font-size: 2em;
        text-align: center;
    }
    
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .section-subtitle {
        text-align: center;
    }
    
    .showcase-list {
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .sdg-mini-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .home-showcase-section {
        padding: 40px 0;
    }
    
    .showcase-content-flex {
        gap: 25px;
    }
    
    .section-title {
        font-size: 1.8em;
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 1em;
        margin-bottom: 20px;
    }
    
    .showcase-list li {
        font-size: 0.95em;
        margin-bottom: 10px;
    }
    
    .sdg-mini-icons img {
        height: 40px;
    }
}

/* Mobile-optimized hero heading */
h1.mobile-optimized {
    font-size: 3.5em;
    line-height: 1.2;
}

@media (max-width: 992px) {
    h1.mobile-optimized {
        font-size: 2.8em;
        line-height: 1.25;
    }
}

@media (max-width: 768px) {
    h1.mobile-optimized {
        font-size: 1.6em;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    h1.mobile-optimized {
        font-size: 1.4em;
        line-height: 1.4;
    }
}

/* Hero content alignment adjustment */
.hero .container {
    padding-left: 5%;
    box-sizing: border-box;
}

.hero-content {
    max-width: 90%;
    margin-right: auto;
    margin-left: 0;
    text-align: left;
}

@media (max-width: 768px) {
    .hero .container {
        padding-left: 15px;
    }
    
    .hero-content {
        max-width: 100%;
    }
}

/* Compact Loyalty Grid Styles */
.compact-loyalty-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 10px;
}

.compact-loyalty-col {
    flex: 1;
}

.compact-loyalty-col h3 {
    font-size: 1.2em;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
}

.compact-loyalty-col h3:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #e91e63;
}

@media (max-width: 768px) {
    .compact-loyalty-grid {
        flex-direction: column;
        gap: 20px;
    }
    
    .compact-loyalty-col h3:after {
        left: 0;
        transform: none;
    }
}

/* Loyalty Mini Icons */
.loyalty-mini-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: #e91e63;
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
}

.loyalty-mini-icon svg {
    width: 16px;
    height: 16px;
    stroke: white;
}

/* CTA Section Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.cta-buttons .button {
    padding: 15px 35px;
    margin: 0;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-buttons .button {
        width: 80%;
        max-width: 280px;
        margin: 0;
        padding: 12px 20px;
    }
    
    .loyalty-mini-icon {
        width: 24px;
        height: 24px;
    }
    
    .loyalty-mini-icon svg {
        width: 14px;
        height: 14px;
    }
}

/* CTA Section Button Styling */
.cta-section .button.primary {
    background-color: #e91e63; /* Pink background */
    color: white;
    border: 2px solid #e91e63;
}

.cta-section .button.primary:hover {
    background-color: #d81557; /* Darker pink on hover */
    border-color: #d81557;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

.cta-section .button.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-section .button.secondary:hover {
    background-color: rgba(255,255,255,0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.25);
}

.cta-section {
    background-color: #3498db;
    color: white;
    padding: 70px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.95) 0%, rgba(41, 128, 185, 0.95) 100%);
    z-index: 0;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
}

.cta-section .button {
    font-size: 1.1em;
    padding: 16px 40px;
    border-radius: 30px;
    font-weight: 700;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-section .button.primary {
    background-color: #e91e63; /* Pink background */
    color: white;
    border: 2px solid #e91e63;
}

.cta-section .button.primary:hover {
    background-color: #d81557; /* Darker pink on hover */
    border-color: #d81557;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

.cta-section .button.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-section .button.secondary:hover {
    background-color: rgba(255,255,255,0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.25);
}

@media (max-width: 768px) {
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-section h2 {
        font-size: 2em;
    }
    
    .cta-section p {
        font-size: 1.1em;
        margin-bottom: 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        margin-top: 30px;
        gap: 15px;
    }
    
    .cta-section .button {
        width: 80%;
        max-width: 280px;
        padding: 14px 25px;
        font-size: 1em;
    }
}

/* Nav Button - Special treatment */
.nav-links li:last-child:after {
    display: none; /* Remove the underline effect for the button in nav */
}

.nav-button {
    font-size: 0.95em;
    padding: 12px 25px;
    margin-top: 0;
    margin-left: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Additional styling for nav button to fit better */
.nav-links li:last-child {
    margin-left: 20px;
}

.nav-links .nav-button:hover {
    color: white !important;
    text-decoration: none !important;
    transform: translateY(-3px);
}

/* Media queries for responsive buttons */
@media (max-width: 768px) {
    .nav-button {
        padding: 12px 25px;
        font-size: 0.95em;
        margin-left: 15px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
    
    .nav-links li:last-child {
        margin-left: 20px;
    }
    
    .nav-links .nav-button:hover {
        transform: translateY(-3px);
        color: white !important; /* Ensure text color stays white on hover */
        text-decoration: none;
    }
}