* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #1a1a2e;
    background-color: #f8f9fa;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: #e63946;
    transition: all 0.3s ease;
}

a:hover {
    color: #d62839;
    opacity: 0.85;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

.container {
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
    margin-right: auto;
    margin-left: auto;
    max-width: 1200px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -1rem;
    margin-left: -1rem;
}

.row > * {
    flex-shrink: 0;
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
}

.col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
}

.col-lg-4 {
    flex: 0 0 auto;
    width: 33.333%;
}

.col-lg-5 {
    flex: 0 0 auto;
    width: 41.666%;
}

.col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
}

.col-lg-7 {
    flex: 0 0 auto;
    width: 58.333%;
}

.col-lg-8 {
    flex: 0 0 auto;
    width: 66.666%;
}

.col-lg-10 {
    flex: 0 0 auto;
    width: 83.333%;
}

.col-md-6 {
    flex: 0 0 auto;
    width: 50%;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    background-image: linear-gradient(rgba(26, 26, 46, 0.75), rgba(26, 26, 46, 0.75)), url('../imagescontainer/imgpe5.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
    display: flex;
    align-items: center;

    padding: 20px 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.3) 0%, rgba(26, 26, 46, 0.5) 100%);
    z-index: 1;
}

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

.hero-subtitle {
    color: #ffd700;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #e63946;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid #e63946;
}

.btn-hero:hover {
    background-color: transparent;
    color: #e63946;
    border-color: #e63946;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(230, 57, 70, 0.3);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    line-height: 1.6;
}

.feature-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid #e63946;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(230, 57, 70, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e63946 0%, #d62839 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2rem;
}

.feature-title {
    font-size: 1.4rem;
    color: #1a1a2e;
    font-weight: 700;
}

.feature-text {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.7;
}

.content-section {
    background-color: #ffffff;
}

.content-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a2e;
}

.content-text {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.8;
}

.content-features {
    margin-top: 2rem;
}

.content-feature-item {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: #495057;
}

.content-feature-item i {
    color: #e63946;
    font-size: 1.5rem;
}

.cta-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.cta-card {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
}

.cta-text {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.7;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #e63946;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: #d62839;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
}

.branches-list {
    margin-top: 1.5rem;
}

.branch-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background-color: #f8f9fa;
    margin-bottom: 0.75rem;
    border-radius: 10px;
    font-size: 1.1rem;
    color: #1a1a2e;
    font-weight: 500;
    transition: all 0.3s ease;
}

.branch-item:hover {
    background-color: #e63946;
    color: #ffffff;
    transform: translateX(5px);
}

.branch-item i {
    color: #e63946;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.branch-item:hover i {
    color: #ffffff;
}

.process-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.process-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #e63946 0%, #ffd700 100%);
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(230, 57, 70, 0.15);
}

.process-number {
    font-size: 3rem;
    font-weight: 700;
    color: #e63946;
    margin-bottom: 1rem;
}

.process-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.process-text {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.contact-wrapper {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 3rem;
}

.contact-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e63946 0%, #d62839 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-right: 1.5rem;
}

.contact-label {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-link {
    font-size: 1.2rem;
    color: #1a1a2e;
    font-weight: 700;
}

.contact-value {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 0;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-control, .form-select {
    display: block;
    width: 100%;
    padding: 0.85rem 1.2rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #1a1a2e;
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    outline: 0;
    border-color: #e63946;
    background-color: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(230, 57, 70, 0.15);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%231a1a2e' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
    padding-right: 3rem;
}

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

.form-check {
    display: flex;
    align-items: flex-start;
}

.form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.25rem;
    margin-right: 0.75rem;
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: #e63946;
    border-color: #e63946;
}

.form-check-label {
    font-size: 0.9rem;
    color: #495057;
    cursor: pointer;
}

.btn-submit {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #e63946 0%, #d62839 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(230, 57, 70, 0.3);
}

.footer-section {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 4rem 0 2rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e63946;
    margin-bottom: 1rem;
}

.footer-text {
    color: #a0a0b0;
    line-height: 1.7;
    font-size: 1rem;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #a0a0b0;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #e63946;
    padding-left: 5px;
}

.footer-contact p {
    color: #a0a0b0;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.footer-contact i {
    color: #e63946;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #a0a0b0;
    font-size: 0.95rem;
}

.page-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    color: #ffffff;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #a0a0b0;
}

.btn-back {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #e63946;
    color: #ffffff;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background-color: #d62839;
    transform: translateY(-2px);
}

.tips-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
}

.tips-text {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.8;
}

.tips-extra {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    margin-top: 4rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.tip-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 15px;
    height: 100%;
    transition: all 0.3s ease;
    border-left: 4px solid #e63946;
}

.tip-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.15);
}

.tip-icon {
    font-size: 2.5rem;
    color: #e63946;
}

.tip-box-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a2e;
}

.tip-box-text {
    color: #6c757d;
    line-height: 1.7;
}

.cta-simple {
    background: linear-gradient(135deg, #e63946 0%, #d62839 100%);
    color: #ffffff;
}

.cta-simple-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
}

.cta-simple-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.policy-content {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.policy-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid #e63946;
}

.policy-content h2:first-of-type {
    margin-top: 0;
}

.policy-text {
    font-size: 1.05rem;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.policy-date {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e9ecef;
    font-weight: 600;
    color: #6c757d;
    font-size: 1rem;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.thanks-icon {
    font-size: 5rem;
    color: #28a745;
}

.thanks-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
}

.thanks-text {
    font-size: 1.2rem;
    color: #6c757d;
    line-height: 1.7;
}

.btn-home {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #e63946;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-home:hover {
    background-color: #d62839;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
}

.bg-light {
    background-color: #f8f9fa;
}

.bg-white {
    background-color: #ffffff;
}

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

.text-lg-end {
    text-align: right;
}

.position-relative {
    position: relative;
}

.d-flex {
    display: flex;
}

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

.align-items-flex-start {
    align-items: flex-start;
}

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

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

.w-100 {
    width: 100%;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-5 {
    margin-bottom: 1.25rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-15 {
    margin-bottom: 4rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.me-2 {
    margin-right: 0.5rem;
}

.me-3 {
    margin-right: 0.75rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-15 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.g-6 > * {
    margin-bottom: 1.5rem;
}

.g-8 > * {
    margin-bottom: 2rem;
}

.shadow-lg {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.rounded-4 {
    border-radius: 15px;
}

.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}

@media (max-width: 991px) {
    .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-10 {
        width: 100%;
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .text-lg-end {
        text-align: center;
    }

    .order-lg-1 {
        order: 2;
    }

    .order-lg-2 {
        order: 1;
    }

    .page-title {
        font-size: 2rem;
    }

    .py-lg-20 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .py-lg-25 {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

@media (max-width: 767px) {
    .col-md-6 {
        width: 100%;
    }

    .hero-section {
        min-height: 80vh;
    }

    .contact-wrapper {
        padding: 2rem;
    }

    .policy-content {
        padding: 2rem;
    }
}