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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

.container-fluid {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 19px;
}

.navigation-top {
    background: #fff;
    padding: 13px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navigation-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    position: relative;
}

.brand-identity img {
    height: 41px;
    width: auto;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

.hamburger {
    width: 28px;
    height: 3px;
    background: #2c3e50;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 28px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s ease;
}

.hamburger:before {
    top: -7px;
}

.hamburger:after {
    top: 7px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 17px;
}

.nav-item {
    list-style: none;
}

.nav-link {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

@media screen and (max-width: 768px) {
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 12px;
        z-index: 2;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        transition: all 0.3s ease;
        padding-top: 77px;
        flex-direction: column;
        align-items: center;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin: 13px 0;
    }

    .nav-link {
        display: inline-block;
        padding: 8px 17px;
        font-size: 16px;
        color: #2c3e50;
    }

    .nav-toggle:checked ~ .nav-wrapper {
        left: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

.hero-showcase {
    margin-top: 69px;
}

.main-hero-display {
    height: 640px;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    background-image: linear-gradient(rgba(44, 62, 80, 0.6), rgba(52, 152, 219, 0.4)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23e8f4f8" width="1200" height="800"/><circle fill="%2352a3d9" cx="200" cy="150" r="80" opacity="0.3"/><circle fill="%233498db" cx="800" cy="300" r="120" opacity="0.2"/><rect fill="%232c3e50" x="0" y="600" width="1200" height="200" opacity="0.1"/></svg>');
}

@media (max-width: 767px) {
    .main-hero-display {
        height: 520px;
    }
}

.hero-row {
    width: 100%;
}

.hero-column {
    width: 100%;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 6px 17px;
    border-radius: 19px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 19px;
    backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.hero-description {
    font-size: 19px;
    font-weight: 400;
    color: #ecf0f1;
    margin-bottom: 31px;
    margin-top: 11px;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .hero-description {
        font-size: 16px;
        margin-bottom: 23px;
    }
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 29px;
    margin-bottom: 31px;
}

.about-hero-section {
    margin-top: 69px;
}

.hero-wrapper {
    height: 520px;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
}

.about-hero-background {
    background-image: linear-gradient(rgba(52, 73, 94, 0.7), rgba(44, 62, 80, 0.5)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23f8f9fa" width="1200" height="600"/><polygon fill="%2334495e" points="0,400 400,300 800,450 1200,350 1200,600 0,600" opacity="0.3"/><circle fill="%233498db" cx="300" cy="200" r="60" opacity="0.2"/><circle fill="%232c3e50" cx="900" cy="180" r="40" opacity="0.15"/></svg>');
}

@media (max-width: 767px) {
    .hero-wrapper {
        height: 420px;
    }
}

.hero-content-wrapper {
    width: 100%;
}

.about-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 7px 19px;
    border-radius: 21px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 17px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.9px;
}

.about-hero-content h1 {
    font-size: 49px;
    font-weight: 300;
    line-height: 61px;
    margin-bottom: 18px;
    color: #fff;
    text-transform: capitalize;
    letter-spacing: 1.3px;
}

.about-hero-content h1 span {
    font-weight: 700;
}

@media (max-width: 767px) {
    .about-hero-content h1 {
        font-size: 31px;
        line-height: 39px;
    }
}

.about-hero-description {
    font-size: 17px;
    font-weight: 400;
    color: #ecf0f1;
    line-height: 1.5;
    max-width: 640px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .about-hero-description {
        font-size: 15px;
    }
}

.story-content h2 {
    font-size: 38px;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 23px;
    line-height: 1.3;
}

@media (max-width: 767px) {
    .story-content h2 {
        font-size: 27px;
        margin-bottom: 19px;
    }
}

.story-content p {
    font-size: 15px;
    font-weight: 400;
    color: #7f8c8d;
    line-height: 27px;
    margin-bottom: 19px;
}

.story-highlights {
    display: flex;
    gap: 31px;
    margin-top: 29px;
}

.legal-hero-section {
    margin-top: 69px;
}

.legal-hero-wrapper {
    height: 440px;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    display: flex;
    align-items: center;
    position: relative;
}

.legal-hero-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%2334495e" width="1200" height="400"/><polygon fill="%232c3e50" points="0,300 300,250 600,320 900,280 1200,300 1200,400 0,400" opacity="0.6"/><circle fill="%233498db" cx="200" cy="150" r="30" opacity="0.3"/><circle fill="%233498db" cx="800" cy="120" r="20" opacity="0.2"/></svg>');
    z-index: 1;
}

.legal-hero-content {
    position: relative;
    z-index: 2;
}

@media (max-width: 767px) {
    .legal-hero-wrapper {
        height: 360px;
    }
}

.legal-badge {
    display: inline-block;
    background: rgba(52, 152, 219, 0.2);
    color: #3498db;
    padding: 8px 21px;
    border-radius: 23px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 19px;
    backdrop-filter: blur(3px);
    border: 1px solid rgba(52, 152, 219, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.legal-hero-content h1 {
    font-size: 47px;
    font-weight: 300;
    line-height: 58px;
    margin-bottom: 17px;
    color: #fff;
    text-transform: capitalize;
    letter-spacing: 1.2px;
}

.legal-hero-content h1 span {
    font-weight: 700;
}

@media (max-width: 767px) {
    .legal-hero-content h1 {
        font-size: 29px;
        line-height: 37px;
    }
}

.legal-hero-description {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto 23px auto;
}

@media (max-width: 767px) {
    .legal-hero-description {
        font-size: 14px;
    }
}

.legal-updated {
    background: rgba(255, 255, 255, 0.1);
    padding: 7px 15px;
    border-radius: 17px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    display: inline-block;
}

.legal-document {
    max-width: 820px;
    margin: 0 auto;
    background: #fff;
    padding: 43px;
    border-radius: 13px;
    box-shadow: 0 7px 23px rgba(0, 0, 0, 0.08);
    margin-top: -59px;
    position: relative;
    z-index: 3;
}

@media (max-width: 767px) {
    .legal-document {
        padding: 27px;
        margin-top: -39px;
    }
}

.legal-section {
    margin-bottom: 37px;
    padding-bottom: 23px;
    border-bottom: 1px solid #eee;
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 26px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 19px;
    padding-bottom: 8px;
    border-bottom: 2px solid #3498db;
    display: inline-block;
}

.legal-section h3 {
    font-size: 19px;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 13px;
    margin-top: 21px;
}

.legal-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 7px;
}

.legal-section p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-list {
    list-style: none;
    padding: 0;
    margin: 17px 0;
}

.legal-list li {
    position: relative;
    padding-left: 23px;
    margin-bottom: 9px;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

.legal-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
    font-size: 16px;
}

.info-category {
    background: rgba(52, 152, 219, 0.02);
    padding: 19px;
    border-radius: 8px;
    margin: 17px 0;
    border-left: 3px solid #3498db;
}

.purpose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 19px;
    margin-top: 21px;
}

.purpose-item {
    background: #f8f9fa;
    padding: 17px;
    border-radius: 7px;
    border-top: 2px solid #3498db;
}

.purpose-item h4 {
    color: #2c3e50;
    margin-bottom: 6px;
}

.purpose-item p {
    margin: 0;
    font-size: 13px;
    color: #7f8c8d;
}

.security-measures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 17px;
    margin-top: 19px;
}

.security-item {
    background: rgba(39, 174, 96, 0.05);
    padding: 15px;
    border-radius: 7px;
    border-left: 3px solid #27ae60;
}

.security-item h4 {
    color: #27ae60;
    margin-bottom: 5px;
    font-size: 15px;
}

.security-item p {
    margin: 0;
    font-size: 13px;
    color: #555;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin-top: 19px;
}

.right-item {
    background: rgba(52, 152, 219, 0.05);
    padding: 13px;
    border-radius: 6px;
    font-size: 14px;
    color: #555;
}

.right-item strong {
    color: #3498db;
    font-weight: 600;
}

.contact-info-legal {
    background: #f8f9fa;
    padding: 19px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    margin-top: 15px;
}

.contact-info-legal p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

.definitions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 17px;
    margin-top: 19px;
}

.definition-item {
    background: rgba(155, 89, 182, 0.05);
    padding: 15px;
    border-radius: 7px;
    text-align: center;
    border-top: 2px solid #9b59b6;
}

.definition-item h4 {
    color: #9b59b6;
    margin-bottom: 7px;
    font-size: 15px;
}

.definition-item p {
    margin: 0;
    font-size: 12px;
    color: #7f8c8d;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 17px;
    margin-top: 19px;
}

.policy-item {
    background: rgba(231, 76, 60, 0.05);
    padding: 15px;
    border-radius: 7px;
    border-left: 3px solid #e74c3c;
}

.policy-item h4 {
    color: #e74c3c;
    margin-bottom: 6px;
    font-size: 15px;
}

.policy-item p {
    margin: 0;
    font-size: 13px;
    color: #555;
}

.website-rules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 17px;
    margin-top: 19px;
}

.rule-item {
    background: rgba(52, 152, 219, 0.05);
    padding: 15px;
    border-radius: 7px;
    border-top: 2px solid #3498db;
}

.rule-item h4 {
    color: #3498db;
    margin-bottom: 6px;
    font-size: 15px;
}

.rule-item p {
    margin: 0;
    font-size: 13px;
    color: #555;
}

.story-highlights {
    flex-direction: column;
    gap: 17px;
}

.highlight-number {
    text-align: center;
    background: #f8f9fa;
    padding: 19px;
    border-radius: 9px;
    border-left: 4px solid #3498db;
    transition: transform 0.3s ease;
}

.highlight-number:hover {
    transform: translateY(-3px);
}

.highlight-number .number {
    display: block;
    font-size: 23px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.highlight-number .text {
    display: block;
    font-size: 12px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.story-image-showcase {
    border-radius: 11px;
    overflow: hidden;
    position: relative;
}

.story-image-showcase img {
    width: 100%;
    height: auto;
    transition: 0.3s;
}

.story-image-showcase:hover img {
    transform: scale(1.04);
}

.section-subtitle {
    font-size: 16px;
    color: #7f8c8d;
    margin-top: 8px;
    text-align: center;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 33px;
    margin-top: 47px;
}

.value-card {
    background: #fff;
    padding: 29px;
    border-radius: 13px;
    box-shadow: 0 5px 19px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    border-top: 3px solid #3498db;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 9px 26px rgba(0, 0, 0, 0.13);
}

.value-image {
    margin-bottom: 21px;
    border-radius: 8px;
    overflow: hidden;
}

.value-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 0.3s;
}

.value-card:hover .value-photo {
    transform: scale(1.05);
}

.value-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 13px;
}

.value-content p {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 24px;
}

.team-image-container {
    position: relative;
    border-radius: 11px;
    overflow: hidden;
}

.team-image-container img {
    width: 100%;
    height: auto;
    transition: 0.3s;
}

.team-image-container:hover img {
    transform: scale(1.03);
}

.experience-badge {
    position: absolute;
    bottom: 19px;
    right: 19px;
    background: rgba(52, 152, 219, 0.95);
    color: #fff;
    padding: 17px;
    border-radius: 50%;
    text-align: center;
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    min-width: 79px;
    min-height: 79px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.badge-number {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 2px;
}

.badge-text {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.team-description h2 {
    font-size: 35px;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 21px;
    line-height: 1.3;
}

@media (max-width: 767px) {
    .team-description h2 {
        font-size: 25px;
        margin-bottom: 17px;
    }
}

.team-description p {
    font-size: 15px;
    font-weight: 400;
    color: #7f8c8d;
    line-height: 26px;
    margin-bottom: 18px;
}

.team-features {
    margin-top: 27px;
}

.team-feature-item {
    background: rgba(52, 152, 219, 0.05);
    padding: 16px;
    border-radius: 7px;
    margin-bottom: 15px;
    border-left: 3px solid #3498db;
}

.team-feature-item h4 {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 6px;
    font-weight: 600;
}

.team-feature-item p {
    font-size: 13px;
    color: #7f8c8d;
    margin: 0;
    line-height: 1.5;
}

.about-cta h2 {
    font-size: 37px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 17px;
}

@media (max-width: 767px) {
    .about-cta h2 {
        font-size: 26px;
    }
}

.cta-description {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 31px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

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

.thankyou-hero-section {
    margin-top: 69px;
}

.thankyou-hero-wrapper {
    height: 550px;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.thankyou-hero-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 550"><rect fill="%2327ae60" width="1200" height="550"/><circle fill="%232ecc71" cx="200" cy="150" r="80" opacity="0.3"/><circle fill="%2327ae60" cx="800" cy="300" r="120" opacity="0.2"/><polygon fill="%232ecc71" points="0,450 300,380 600,420 900,360 1200,400 1200,550 0,550" opacity="0.4"/></svg>');
    z-index: 1;
}

.thankyou-hero-content {
    position: relative;
    z-index: 2;
}

@media (max-width: 767px) {
    .thankyou-hero-wrapper {
        height: 450px;
    }
}

.success-icon-wrapper {
    margin-bottom: 23px;
}

.success-checkmark {
    width: 67px;
    height: 67px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 auto;
    position: relative;
    border: 3px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
}

.success-checkmark::after {
    content: '';
    position: absolute;
    top: 17px;
    left: 23px;
    width: 11px;
    height: 19px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
    animation: checkmark-appear 0.6s ease-in-out;
}

@keyframes checkmark-appear {
    0% {
        opacity: 0;
        transform: rotate(45deg) scale(0.5);
    }
    100% {
        opacity: 1;
        transform: rotate(45deg) scale(1);
    }
}

.thankyou-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 7px 19px;
    border-radius: 21px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 17px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.thankyou-hero-content h1 {
    font-size: 51px;
    font-weight: 300;
    line-height: 63px;
    margin-bottom: 19px;
    color: #fff;
    text-transform: capitalize;
    letter-spacing: 1.4px;
}

.thankyou-hero-content h1 span {
    font-weight: 700;
}

@media (max-width: 767px) {
    .thankyou-hero-content h1 {
        font-size: 33px;
        line-height: 41px;
    }
}

.thankyou-hero-description {
    font-size: 17px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    max-width: 680px;
    margin: 0 auto 31px auto;
}

@media (max-width: 767px) {
    .thankyou-hero-description {
        font-size: 15px;
    }
}

.processing-info {
    display: flex;
    justify-content: center;
    gap: 41px;
    margin-top: 31px;
}

@media (max-width: 575px) {
    .processing-info {
        gap: 27px;
    }
}

.info-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 17px 23px;
    border-radius: 11px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.info-number {
    display: block;
    font-size: 21px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.info-text {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.next-steps-content h2 {
    font-size: 39px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 17px;
}

@media (max-width: 767px) {
    .next-steps-content h2 {
        font-size: 27px;
    }
}

.steps-subtitle {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 41px;
    line-height: 1.6;
}

.steps-timeline {
    max-width: 720px;
    margin: 0 auto;
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 39px;
    position: relative;
}

.timeline-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 21px;
    top: 47px;
    width: 2px;
    height: 39px;
    background: #ecf0f1;
}

.step-number {
    width: 43px;
    height: 43px;
    background: #3498db;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 700;
    margin-right: 21px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    padding-top: 3px;
}

.step-content h3 {
    font-size: 19px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 575px) {
    .timeline-step {
        flex-direction: column;
        text-align: center;
    }

    .timeline-step:not(:last-child)::after {
        display: none;
    }

    .step-number {
        margin: 0 auto 13px auto;
    }
}

.benefits-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 29px;
    margin-top: 43px;
}

.benefit-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 21px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 11px 29px rgba(0, 0, 0, 0.12);
}

.benefit-image {
    overflow: hidden;
    height: 210px;
}

.benefit-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-photo {
    transform: scale(1.05);
}

.benefit-content {
    padding: 23px;
}

.benefit-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 11px;
}

.benefit-content p {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0;
}

.reminder-content h2 {
    font-size: 35px;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 19px;
    line-height: 1.3;
}

@media (max-width: 767px) {
    .reminder-content h2 {
        font-size: 25px;
        margin-bottom: 15px;
    }
}

.reminder-content p {
    font-size: 15px;
    font-weight: 400;
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 17px;
}

.contact-options {
    margin-top: 27px;
}

.contact-option {
    background: rgba(52, 152, 219, 0.05);
    padding: 17px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 3px solid #3498db;
}

.contact-option h4 {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 6px;
    font-weight: 600;
}

.contact-detail {
    font-size: 14px;
    color: #7f8c8d;
    margin: 0;
    font-weight: 500;
}

.reminder-image {
    border-radius: 11px;
    overflow: hidden;
}

.reminder-image img {
    width: 100%;
    height: auto;
    transition: 0.3s;
}

.reminder-image:hover img {
    transform: scale(1.03);
}

.final-cta h2 {
    font-size: 37px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 17px;
}

@media (max-width: 767px) {
    .final-cta h2 {
        font-size: 26px;
    }
}

.cta-final-description {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 29px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.final-actions {
    display: flex;
    justify-content: center;
    gap: 17px;
    flex-wrap: wrap;
}

@media (max-width: 575px) {
    .final-actions {
        flex-direction: column;
        align-items: center;
    }
}

.cta-buttons {
    flex-direction: column;
    align-items: center;
}

.hero-features {
    flex-direction: column;
    gap: 17px;
    align-items: center;
}

.hero-feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 13px 19px;
    border-radius: 11px;
    text-align: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.feature-number {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
}

.feature-text {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.action-buttons-area {
    margin-bottom: 27px;
}

.secondary-hero-btn {
    background: transparent;
    color: #fff;
    display: inline-block;
    padding: 17px 36px;
    font-size: 14px;
    font-weight: 500;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 26px;
    text-align: center;
    text-transform: capitalize;
    transition: 0.3s;
    cursor: pointer;
    text-decoration: none;
    margin-left: 13px;
}

.secondary-hero-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}

@media (max-width: 575px) {
    .secondary-hero-btn {
        margin-left: 0;
        margin-top: 13px;
        display: block;
    }
}

.hero-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 23px;
    flex-wrap: wrap;
}

.trust-item {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

@media (max-width: 575px) {
    .trust-item {
        font-size: 12px;
    }
}

.hero-content-area h1 {
    font-size: 54px;
    font-weight: 300;
    line-height: 67px;
    margin-bottom: 19px;
    color: #fff;
    text-transform: capitalize;
    letter-spacing: 1.5px;
}

.hero-content-area h1 span {
    font-weight: 700;
}

@media (max-width: 767px) {
    .hero-content-area h1 {
        font-size: 32px;
        line-height: 41px;
    }
}

.hero-content-area p {
    font-size: 18px;
    font-weight: 400;
    color: #ecf0f1;
    margin-bottom: 27px;
    margin-top: 8px;
}

@media (max-width: 767px) {
    .hero-content-area p {
        font-size: 15px;
    }
}

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

.primary-action-btn {
    background: linear-gradient(to bottom, #3498db 0%, #2980b9 100%);
    color: #fff;
    display: inline-block;
    padding: 17px 36px;
    font-size: 14px;
    font-weight: 500;
    border: 0;
    border-radius: 26px;
    text-align: center;
    text-transform: capitalize;
    transition: 0.3s;
    cursor: pointer;
    text-decoration: none;
}

.primary-action-btn:hover {
    background: linear-gradient(to left, #2980b9 0%, #3498db 100%);
    color: #fff;
}

.secondary-action-btn {
    background: #e67e22;
    color: #fff;
    display: inline-block;
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 500;
    border: 0;
    border-radius: 22px;
    text-align: center;
    text-transform: capitalize;
    transition: 0.3s;
    cursor: pointer;
    text-decoration: none;
}

.secondary-action-btn:hover {
    background: #d35400;
    color: #fff;
}

.accommodation-padding {
    padding: 93px 0;
}

@media (max-width: 767px) {
    .accommodation-padding {
        padding: 47px 0;
    }
}

.content-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -13px;
}

.items-aligned-center {
    align-items: center;
}

.justify-centered {
    justify-content: center;
}

.content-column-half {
    flex: 0 0 50%;
    padding: 0 13px;
}

.content-column-centered {
    flex: 0 0 66.67%;
    padding: 0 13px;
}

@media (max-width: 991px) {
    .content-column-half,
    .content-column-centered {
        flex: 0 0 100%;
        margin-bottom: 34px;
    }
}

.margin-left-auto {
    margin-left: auto;
    padding-left: 28px;
}

@media (max-width: 991px) {
    .margin-left-auto {
        margin-left: 0;
        padding-left: 13px;
    }
}

.image-showcase {
    border-radius: 8px;
    overflow: hidden;
}

.image-showcase img {
    width: 100%;
    height: auto;
    transition: 0.3s;
}

.image-showcase:hover img {
    transform: scale(1.03);
}

.welcome-presentation h2 {
    font-size: 37px;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 22px;
    line-height: 1.3;
}

@media (max-width: 767px) {
    .welcome-presentation h2 {
        font-size: 26px;
        margin-bottom: 17px;
    }
}

.welcome-presentation p {
    font-size: 15px;
    font-weight: 400;
    color: #7f8c8d;
    line-height: 26px;
    margin-bottom: 18px;
}

.background-light {
    background: #f8f9fa;
}

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

.section-header h2 {
    font-size: 39px;
    font-weight: 600;
    color: #2c3e50;
}

@media (max-width: 767px) {
    .section-header h2 {
        font-size: 28px;
    }
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 31px;
}

.advantage-card {
    background: #fff;
    padding: 26px;
    border-radius: 11px;
    box-shadow: 0 4px 17px rgba(0, 0, 0, 0.07);
    transition: 0.3s;
}

.advantage-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.advantage-image {
    margin-bottom: 19px;
    border-radius: 7px;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 190px;
    object-fit: cover;
    transition: 0.3s;
}

.advantage-card:hover .service-image {
    transform: scale(1.04);
}

.advantage-content h3 {
    font-size: 19px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

.advantage-content p {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 23px;
}

.features-content h2 {
    font-size: 34px;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 21px;
    line-height: 1.3;
}

@media (max-width: 767px) {
    .features-content h2 {
        font-size: 23px;
        margin-bottom: 16px;
    }
}

.features-content p {
    font-size: 15px;
    font-weight: 400;
    color: #7f8c8d;
    line-height: 26px;
    margin-bottom: 23px;
}

.features-listing {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}

.features-listing li {
    font-size: 15px;
    color: #7f8c8d;
    line-height: 29px;
    position: relative;
    padding-left: 23px;
    margin-bottom: 7px;
}

.features-listing li::before {
    position: absolute;
    content: "✓";
    width: 16px;
    height: 16px;
    background: #27ae60;
    color: #fff;
    border-radius: 50%;
    left: 0;
    top: 5px;
    font-size: 11px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-image {
    border-radius: 8px;
    overflow: hidden;
}

.features-image img {
    width: 100%;
    height: auto;
    transition: 0.3s;
}

.features-image:hover img {
    transform: scale(1.03);
}

.text-showcase h2 {
    font-size: 36px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 16px;
}

@media (max-width: 767px) {
    .text-showcase h2 {
        font-size: 24px;
    }
}

.lead-text {
    font-size: 18px;
    font-weight: 300;
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 23px;
}

.text-showcase p {
    font-size: 15px;
    color: #7f8c8d;
    line-height: 1.7;
    margin-bottom: 16px;
}

@media (max-width: 767px) {
    .text-showcase p,
    .lead-text {
        font-size: 14px;
    }
}

.footer-brand {
    text-align: center;
}

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

.footer-logo img {
    height: 87px;
    width: auto;
    filter: brightness(0) invert(1);
}

.hotel-rating {
    margin-top: 17px;
    text-align: center;
}

.stars {
    color: #f39c12;
    font-size: 16px;
    margin-right: 8px;
}

.rating-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.contact-section .contact-info {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.contact-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 13px;
    border-radius: 7px;
    border-left: 3px solid #3498db;
}

.contact-item strong {
    color: #3498db;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-newsletter {
    background: rgba(255, 255, 255, 0.05);
    padding: 31px;
    margin: 41px 0;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 29px;
}

@media (max-width: 991px) {
    .footer-newsletter {
        flex-direction: column;
        text-align: center;
        gap: 19px;
    }
}

.newsletter-content h4 {
    color: #fff;
    font-size: 19px;
    margin-bottom: 7px;
    font-weight: 600;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 11px;
    min-width: 340px;
}

@media (max-width: 575px) {
    .newsletter-form {
        min-width: auto;
        flex-direction: column;
        width: 100%;
    }
}

.newsletter-form input {
    flex: 1;
    padding: 11px 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    outline: none;
    border-color: #3498db;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    background: #3498db;
    color: #fff;
    border: none;
    padding: 11px 23px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #2980b9;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 19px;
}

@media (max-width: 767px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 13px;
    }
}

.cnpj-info {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 6px;
    margin-bottom: 0;
}

.footer-certifications {
    display: flex;
    gap: 17px;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .footer-certifications {
        justify-content: center;
    }
}

.cert-item {
    background: rgba(52, 152, 219, 0.2);
    color: #3498db;
    padding: 5px 12px;
    border-radius: 13px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border: 1px solid rgba(52, 152, 219, 0.3);
}

.main-footer {
    padding: 61px 0;
    background: #2c3e50;
}

@media (min-width: 768px) {
    .main-footer {
        padding: 78px 0;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 34px;
    margin-bottom: 43px;
}

.footer-section h3 {
    font-size: 17px;
    color: #fff;
    margin-bottom: 19px;
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-menu li {
    margin-bottom: 11px;
    padding-left: 0;
}

.footer-menu li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: block;
    padding: 3px 0;
}

.footer-menu li a:hover {
    color: #3498db;
    padding-left: 5px;
    transition: all 0.3s ease;
}

.footer-menu li:not(:has(a)) {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    padding: 3px 0;
    position: relative;
    padding-left: 17px;
}

.footer-menu li:not(:has(a)):before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.service-item {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    padding: 3px 0;
    position: relative;
    padding-left: 17px;
}

.service-item:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 12px;
    top: 4px;
}

.contact-info {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom {
    padding-top: 31px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.copyright-area p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0;
}

@media (max-width: 991px) {
    .content-row {
        flex-direction: column;
    }
}

.booking-showcase {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.booking-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="white" opacity="0.08"/><circle cx="40" cy="80" r="1" fill="white" opacity="0.06"/></svg>');
    z-index: 1;
}

.booking-showcase .container-fluid {
    position: relative;
    z-index: 2;
}

.booking-info h2 {
    font-size: 41px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 19px;
    line-height: 1.2;
}

@media (max-width: 767px) {
    .booking-info h2 {
        font-size: 29px;
    }
}

.booking-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 34px;
}

.booking-highlights {
    margin-top: 31px;
}

.highlight-item {
    margin-bottom: 23px;
    padding: 17px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlight-item h4 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 6px;
    font-weight: 600;
}

.highlight-item p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

.booking-form-container {
    background: #fff;
    border-radius: 14px;
    padding: 37px;
    box-shadow: 0 23px 47px rgba(0, 0, 0, 0.15);
    position: relative;
}

.booking-form-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #667eea, #764ba2, #667eea);
    border-radius: 16px;
    z-index: -1;
    background-size: 400% 400%;
    animation: gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.form-header {
    text-align: center;
    margin-bottom: 28px;
}

.form-header h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 7px;
    font-weight: 600;
}

.form-header p {
    color: #7f8c8d;
    font-size: 14px;
    margin: 0;
}

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 7px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid #e8ecef;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fff;
    color: #2c3e50;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
    min-height: 89px;
    font-family: inherit;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23666" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
}

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

.booking-submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    padding: 16px 41px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 27px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.booking-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.booking-submit-btn:hover::before {
    left: 100%;
}

.booking-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 19px rgba(102, 126, 234, 0.3);
}

.booking-submit-btn:active {
    transform: translateY(0);
}

@media (max-width: 991px) {
    .booking-form-container {
        margin-top: 31px;
        padding: 27px;
    }

    .booking-info {
        text-align: center;
    }
}

@media (max-width: 575px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .container-fluid {
        padding: 0 12px;
    }

    .booking-form-container {
        padding: 19px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 11px 13px;
    }
}