* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #263b4f;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}
.top-bar {
    background: #193247;
    color: #ffffff;
    font-size: 12px;
}

.top-bar-inner {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-contact {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.icon {
    width: 14px;
    height: 14px;
    color: #4fb3a9; /* teal accent matching the screenshot */
    flex-shrink: 0;
}

.divider {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons a img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
}
.site-header {
    background: #ffffff;
}

.header-inner {
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-box {
    width: 27px;
    height: 27px;
    border: 2px solid #29485e;

    display: flex;
    align-items: center;
    justify-content: center;
}

.main-menu {
    margin: 0;
    padding: 0;

    list-style: none;

    display: flex;
    align-items: center;

    gap: 30px;
}

.main-menu a {
    color: #163651CC;
    text-decoration: none;

    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;

    opacity: 1;
}
.hero-section {
    position: relative;
    min-height: 656px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 1;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(14, 44, 67, 0.82);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 60px;
    align-items: center;
}


.hero-content {
    color: #ffffff;
}

.hero-content h1 {
    width: 560px;
    height: 134px;

    margin: 0 0 15px;

    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 56px;
    line-height: 120%;
    letter-spacing: 0;

    color: #ffffff;
}
.hero-content p {
    width: 440px;
    height: 72px;

    margin: 0 0 30px 0;

    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0;

    color: #ffffff;
}
.get-started-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 128px;
    height: 40px;

    padding: 11px 24px;

    background: #40A5A2;
    color: #ffffff;

    border-radius: 24px;

    text-decoration: none;

    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;

    gap: 10px;

    box-sizing: border-box;
}.tax-form-wrapper {
    background: #ffffff;

    width: 365px;
    height: 491px;

    padding: 24px;

    border-radius: 16px;

    gap: 24px;

    box-sizing: border-box;
}

.tax-form-wrapper h2 {
    margin-top: 0;

    font-family: 'Inter', sans-serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 120%;

    color: #263b4f;
}

.tax-rebate-form {
    display: flex;
    flex-direction: column;
    color:#091520;
    
}

.tax-rebate-form label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;

    margin-top: 25px;
    margin-bottom: 5px;
}

.tax-rebate-form input[type="text"],
.tax-rebate-form input[type="email"] {
    width: 100%;
    height: 40px;

    border: 1px solid #c5c5c5;
    border-radius: 20px;

    padding: 20px 15px 20px 15px;

    box-sizing: border-box;
}

.terms {
    width: 312px;
    min-height: auto;

    margin-left: 0;

    display: flex;
    align-items: flex-start;
    gap: 8px;

    box-sizing: border-box;

    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 1;
}

.terms input[type="checkbox"] {
    width: 20px;
    height: 20px;

    margin: 2px 0 0 0;
    flex-shrink: 0;

    accent-color: #627089;
    cursor: pointer;
    
}

.terms span {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0;
    color: #1a1a1a;
}

.terms a {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0;

    color: #519eca;

    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 1px;
}

/* Authorization / second field */
.authorization {
    width: 312px;
    height: 42px;

    margin-left: 0;

    border-radius: 2px;
    border: 1px solid #c5c5c5;

    box-sizing: border-box;
}
/* Submit button */
.tax-rebate-form button {
    width: 104px;
    height: 40px;

    padding: 11px 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border: 0;
    border-radius: 24px;

    background: #02274C;
    color: #ffffff;

    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0;
    text-align: center;

    opacity: 1;
    cursor: pointer;
    box-sizing: border-box;
}

/* Circle-arrow icon (inline SVG, no font dependency) */
.tax-rebate-form button::after {
    content: "";
    width: 18px;
    height: 18px;
    display: inline-block;
    flex-shrink: 0;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='10' fill='white'/%3E%3Cpath d='M10 8l4 4-4 4' stroke='%2302274C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Services */
.services-section {
    padding: 58px 0;
    background: #eef5f6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.service-icon {
    width: 64px;
    height: 64px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #4faeb1;
    color: #ffffff;

    font-size: 24px;

    margin-bottom: 14px;
}

.service-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color:#163651;
    line-height: 150%;
    letter-spacing: 0;
}

.service-item p {
    font-size: 16px;
    line-height: 1.6;
    color:#091520;
    line-height: 150%;
    letter-spacing: 0;
}

@media (max-width: 768px) {

    .top-contact {
        display: none;
    }

    .top-bar-inner {
        justify-content: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-section {
        padding: 50px 0;
    }

    .tax-form-wrapper {
        width: 100%;
        height: auto;
        max-width: 365px;
    }

    .terms,
    .authorization {
        width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .main-menu {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }
}