* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    font-family: 'Nunito', sans-serif;
    color: #1f2937;
    background-color: #ffffff;
}

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

h1 {
    font-size: calc(1.6rem + 2.5vw);
}

h2 {
    font-size: calc(1.4rem + 1.2vw);
}

h3 {
    font-size: calc(1.3rem + 0.6vw);
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

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

a {
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    color: #1a4d6d;
}

a:hover {
    opacity: 0.8;
}

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

button {
    cursor: pointer;
}

input, button, select, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

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

.display-3 {
    font-size: calc(1.8rem + 3.5vw);
    font-weight: 800;
    line-height: 1.2;
}

.display-4 {
    font-size: calc(1.6rem + 2.8vw);
    font-weight: 800;
    line-height: 1.2;
}

.display-5 {
    font-size: calc(1.4rem + 1.8vw);
    font-weight: 700;
    line-height: 1.2;
}

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

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

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

.col-12 {
    flex: 0 0 auto;
    width: 100%;
}

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

.form-control, .form-select {
    display: block;
    width: 100%;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    outline: 0;
    border-color: #1a4d6d;
    box-shadow: 0 0 0 4px rgba(26, 77, 109, 0.1);
}

.form-select {
    padding-right: 3rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%231f2937' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
}

.form-check {
    display: block;
    min-height: 1.5rem;
    padding-left: 0;
    margin-bottom: 0;
}

.form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.125rem;
    margin-right: 0.5rem;
    vertical-align: top;
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    appearance: none;
    cursor: pointer;
}

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

.form-check-label {
    cursor: pointer;
}

.btn {
    display: inline-block;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    cursor: pointer;
    user-select: none;
    border: 2px solid transparent;
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #1a4d6d;
    color: #ffffff;
    border-color: #1a4d6d;
}

.btn-primary:hover {
    background-color: #154060;
    border-color: #154060;
    color: #ffffff;
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 77, 109, 0.3);
}

.btn-light {
    background-color: #ffffff;
    color: #1a4d6d;
    border-color: #ffffff;
}

.btn-light:hover {
    background-color: #f3f4f6;
    border-color: #f3f4f6;
    color: #1a4d6d;
    opacity: 1;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.25rem;
}

.text-primary {
    color: #1a4d6d !important;
}

.text-muted {
    color: #6b7280 !important;
}

.text-white {
    color: #ffffff !important;
}

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

.bg-light {
    background-color: #f9fafb !important;
}

.bg-secondary {
    background-color: #2d7a9b !important;
}

.shadow {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06) !important;
}

.shadow-lg {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 6px 12px rgba(0, 0, 0, 0.08) !important;
}

.rounded-3 {
    border-radius: 0.75rem !important;
}

.rounded-4 {
    border-radius: 1rem !important;
}

.rounded-5 {
    border-radius: 1.5rem !important;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

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

.text-lg-end {
    text-align: left !important;
}

.d-flex {
    display: flex !important;
}

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

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

.w-100 {
    width: 100% !important;
}

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

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

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

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

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

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

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

.mb-10 {
    margin-bottom: 2.5rem !important;
}

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

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

.mt-4 {
    margin-top: 1rem !important;
}

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

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

.mt-12 {
    margin-top: 3rem !important;
}

.mt-15 {
    margin-top: 4rem !important;
}

.py-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
}

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

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

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

.p-6 {
    padding: 1.5rem !important;
}

.p-8 {
    padding: 2rem !important;
}

.p-10 {
    padding: 2.5rem !important;
}

.p-12 {
    padding: 3rem !important;
}

.p-15 {
    padding: 4rem !important;
}

.g-4 > * {
    padding: 0.5rem;
}

.g-6 > * {
    padding: 0.75rem;
}

.g-8 > * {
    padding: 1rem;
}

.fw-bold {
    font-weight: 700 !important;
}

.fs-1 {
    font-size: 1.5rem !important;
}

.fs-2 {
    font-size: 1.375rem !important;
}

.fs-3 {
    font-size: 1.25rem !important;
}

.fs-4 {
    font-size: 1.125rem !important;
}

.opacity-90 {
    opacity: 0.9 !important;
}

.hero-section {
    background: linear-gradient(135deg, #1a4d6d 0%, #2d7a9b 100%);
    padding: 5rem 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 150%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.page-hero {
    background: linear-gradient(135deg, #2d7a9b 0%, #1a4d6d 100%);
    padding: 4rem 0;
    color: #ffffff;
    margin-bottom: 3rem;
}

.gradient-section {
    background: linear-gradient(135deg, #1a4d6d 0%, #2d7a9b 100%);
    position: relative;
}

.feature-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 1rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid #f3f4f6;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #1a4d6d;
}

.icon-wrapper {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #1a4d6d 0%, #2d7a9b 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2rem;
}

.badge-text {
    display: inline-block;
    background: linear-gradient(135deg, #f4845f 0%, #ff6b58 100%);
    color: #ffffff;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.content-wrapper {
    padding: 2rem;
}

.stats-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stats-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stats-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f4845f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-label {
    font-size: 1rem;
    opacity: 0.95;
}

.methodology-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.methodology-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 1rem;
    border-left: 4px solid #f4845f;
    transition: all 0.3s ease;
}

.methodology-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.method-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #1a4d6d 0%, #2d7a9b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.25rem;
}

.method-content h5 {
    color: #1a4d6d;
}

.cta-box {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    padding: 3rem;
    border-radius: 1.5rem;
    border: 3px solid #1a4d6d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-image {
    border-radius: 0.75rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.process-step {
    background: rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: #f4845f;
    margin-bottom: 1rem;
    line-height: 1;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-item i {
    font-size: 1.5rem;
    color: #1a4d6d;
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(26, 77, 109, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.info-value {
    font-weight: 600;
    color: #1f2937;
    display: block;
}

.info-value a {
    color: inherit;
}

.contact-form {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 1rem;
}

.footer {
    background: linear-gradient(135deg, #1a4d6d 0%, #154060 100%);
    color: #ffffff;
    padding: 4rem 0 2rem;
    margin-top: 5rem;
}

.footer h3, .footer h5 {
    color: #ffffff;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 1rem;
    height: 100%;
    border: 2px solid #f3f4f6;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: #1a4d6d;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.value-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #f4845f 0%, #ff6b58 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.privacy-content h2 {
    color: #1a4d6d;
    margin-top: 2rem;
}

.privacy-content h2:first-child {
    margin-top: 0;
}

.privacy-list {
    padding-left: 1.5rem;
}

.privacy-list li {
    margin-bottom: 1rem;
    padding-left: 0.5rem;
    position: relative;
}

.privacy-list li::before {
    content: '•';
    color: #f4845f;
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: -1.5rem;
}

.thank-you-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 0;
}

.thank-you-icon {
    width: 8rem;
    height: 8rem;
    background: linear-gradient(135deg, #1a4d6d 0%, #2d7a9b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(26, 77, 109, 0.3);
}

.thank-you-icon i {
    font-size: 4rem;
    color: #ffffff;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.333333%;
    }

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

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.666667%;
    }

    .text-md-end {
        text-align: right !important;
    }

    .mt-md-0 {
        margin-top: 0 !important;
    }

    .mb-md-0 {
        margin-bottom: 0 !important;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }

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

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

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

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

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

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

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

    .offset-lg-1 {
        margin-left: 8.333333%;
    }

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

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

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

    .mb-lg-0 {
        margin-bottom: 0 !important;
    }

    .mt-lg-0 {
        margin-top: 0 !important;
    }

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

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

    .py-lg-24 {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important;
    }

    .py-lg-25 {
        padding-top: 6.5rem !important;
        padding-bottom: 6.5rem !important;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }

    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.666667%;
    }

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

    .col-xl-7 {
        flex: 0 0 auto;
        width: 58.333333%;
    }

    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.666667%;
    }

    h1 {
        font-size: 4.5rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    h3 {
        font-size: 2rem;
    }

    .display-3 {
        font-size: 5rem;
    }

    .display-4 {
        font-size: 4rem;
    }

    .display-5 {
        font-size: 3rem;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}