body {
    margin: 0;
    font-family: 'Helvetica Neue', sans-serif;
    background-color: #fefefe;
    color: #333;
}

/* Pastel Style Header */
.pastel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: linear-gradient(135deg, #2d2f72, #4c95c2);

    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.pastel-logo img {
    max-height: 60px;
}

.pastel-ad-text {
    flex: 1;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}

.pastel-quote-button {
    text-align: right;
}

.pastel-btn {
    padding: 14px 28px;
    background: #ff4081;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 6px 15px rgba(255, 64, 129, 0.3);
    transition: all 0.3s ease;
}

.pastel-btn:hover {
    background: #ff3366;
    box-shadow: 0 8px 18px rgba(255, 64, 129, 0.5);
    transform: scale(1.05);
}

/* Mobile version */
@media (max-width: 768px) {
    .pastel-header {
        flex-direction: column;
        padding: 15px 20px;
    }

    .pastel-logo img {
        max-height: 50px;
    }

    .pastel-ad-text {
        font-size: 18px;
    }

    .pastel-btn {
        padding: 12px 24px;
        font-size: 16px;
    }
}

.header {
    background: linear-gradient(135deg, #2d2f72, #4c95c2);
    padding: 60px 20px;
    color: white;
    text-align: center;
}

.header h1 {
    font-size: 36px;
    margin: 0;
}

.intro {
    text-align: center;
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.intro p {
    font-size: 18px;
    line-height: 1.7;
}

.feature-box {
    text-align: center;
    background-color: #c9ddff;
    border-top: 5px solid #4c95c2;
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
}

.responsive-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.responsive-section .text-content {
    flex: 1 1 50%;
}

.responsive-section .image-content {
    flex: 1 1 40%;
}

@media (max-width: 768px) {
    .responsive-section {
        flex-direction: column;
    }

    .responsive-section .image-content,
    .responsive-section .text-content {
        flex: 1 1 100%;
    }
}

.feature-box h2 {
    color: #2d2f72;
    font-size: 28px;
}

.highlight {
    text-align: center;
    background-color: #bafe1c;
    border-radius: 10px;
    padding: 20px;
    margin-top: 40px;
    font-size: 20px;
    font-weight: bold;
    color: #516300;
}

.cta {
    display: block;
    width: fit-content;
    margin: 30px auto;
    padding: 15px 30px;
    background-color: #2d2f72;
    color: white;
    border-radius: 6px;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.cta:hover {
    background-color: #1c1f50;
}

.grid-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    margin-top: 20px;
    padding: 0 15px;
}

.grid-options a {
    background-color: #dff0ff;
    padding: 12px;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    color: #00527a;
    font-weight: 500;
    font-size: 15px;
}

.section {
    text-align: center;
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}

.section h3 {
    color: #4c95c2;
    font-size: 24px;
}

.section p {
    font-size: 17px;
    line-height: 1.6;
}

.disclaimer {
    font-size: 14px;
    color: #777;
    margin-top: 30px;
    text-align: center;
}

.responsive-img {
    width: 40%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* ======== ADAPTIVE DESIGN ======== */
@media (max-width: 1024px) {
    .header h1 {
        font-size: 32px;
    }

    .intro p,
    .section p {
        font-size: 17px;
    }

    .grid-options {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
}

@media (max-width: 768px) {
    .header {
        padding: 40px 15px;
    }

    .header h1 {
        font-size: 28px;
    }

    .intro p,
    .section p {
        font-size: 16px;
    }

    .feature-box h2 {
        font-size: 24px;
    }

    .highlight {
        font-size: 18px;
    }

    .responsive-img {
        width: 80%;
    }

    .cta {
        padding: 12px 24px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 24px;
    }

    .intro {
        padding: 0 10px;
    }

    .intro p,
    .section p {
        font-size: 15px;
    }

    .feature-box h2 {
        font-size: 22px;
    }

    .highlight {
        font-size: 16px;
        padding: 15px;
    }

    .responsive-img {
        width: 100%;
    }

    .cta {
        font-size: 14px;
        padding: 10px 20px;
    }

    .grid-options {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 8px;
    }

    .grid-options a {
        font-size: 14px;
        padding: 10px;
    }
}

/* Main styles for the section */
.terms-of-service {
    background-color: #f4f7f6;
    padding: 70px 0;
}

.terms-wrapper {
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

.terms-title {
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 20px;
}

.terms-nav {
    display: inline-block;
    font-size: 18px;
    color: #333333;
}

.terms-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.terms-item {
    text-decoration: none;
    color: #00796b;
    font-weight: 500;
    transition: color 0.3s ease;
}

.terms-item:hover {
    color: #004d40;
}

.terms-separator {
    color: #888888;
    padding: 0 10px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .terms-title {
        font-size: 28px;
    }

    .terms-list {
        flex-direction: column;
        align-items: center;
    }

    .terms-item {
        margin-bottom: 12px;
    }

    .terms-separator {
        display: none;
    }
}



.footer-responsive {
    background: #f9fbfc;
    color: #333;
    padding: 40px 20px;
    font-family: 'Roboto', sans-serif;
}

.footer-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.footer-section {
    flex: 1 1 50px;
    min-width: 260px;
}

.footer-title {
    font-size: 18px;
    font-weight: bold;
    color: #25446e;
    margin-bottom: 15px;
}

.footer-address,
.footer-business-id,
.footer-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #444;
}

.footer-link {
    display: block;
    font-size: 14px;
    color: #1e3a8a;
    text-decoration: none;
    margin-bottom: 10px;
}

.footer-link:hover {
    text-decoration: underline;
}

.footer-button {
    display: inline-block;
    background-color: #1e3a8a;
    color: #fff;
    padding: 10px 18px;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 15px;
}

.footer-button:hover {
    background-color: #16306e;
}

.footer-copyright {
    font-size: 13px;
    color: #777;
    margin-top: 20px;
}

/* ✅ Адаптація для мобільних */
@media screen and (max-width: 768px) {
    .footer-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-section {
        width: 90%;
    }

    .footer-button {
        width: 100%;
        text-align: center;
    }
}