/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fc;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === HEADER === */
header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5fcc;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span {
    color: #ff7a45;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 28px;
}

nav ul li a {
    color: #444;
    font-weight: 500;
    transition: color 0.25s;
    font-size: 15px;
}

nav ul li a:hover,
nav ul li a.active {
    color: #2c5fcc;
}

.menu-toggle {
    display: none;
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
    color: #2c5fcc;
}

/* === HERO === */
.hero {
    background: linear-gradient(135deg, rgba(44,95,204,0.85), rgba(108,52,180,0.85)), url('../images/hero.jpg') center/cover no-repeat;
    color: #fff;
    padding: 110px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 46px;
    margin-bottom: 22px;
    font-weight: 700;
    line-height: 1.2;
}

.hero p {
    font-size: 19px;
    max-width: 760px;
    margin: 0 auto 32px;
    opacity: 0.95;
}

.btn {
    display: inline-block;
    background: #ff7a45;
    color: #fff;
    padding: 14px 36px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    background: #e8632d;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(232,99,45,0.35);
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    margin-left: 12px;
}

.btn-outline:hover {
    background: #fff;
    color: #2c5fcc;
}

/* === SECTIONS === */
section {
    padding: 75px 0;
}

.section-title {
    text-align: center;
    font-size: 34px;
    margin-bottom: 18px;
    color: #2c5fcc;
}

.section-subtitle {
    text-align: center;
    color: #666;
    max-width: 720px;
    margin: 0 auto 50px;
    font-size: 17px;
}

/* === FEATURES === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.feature-card {
    background: #fff;
    padding: 36px 28px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 32px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2c5fcc, #6c34b4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 30px;
    color: #fff;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.feature-card p {
    color: #666;
    font-size: 15px;
}

/* === ABOUT / CONTENT BLOCK === */
.content-block {
    background: #fff;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.content-grid img {
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.content-text h2 {
    font-size: 32px;
    margin-bottom: 18px;
    color: #2c5fcc;
}

.content-text p {
    margin-bottom: 16px;
    color: #555;
    font-size: 16px;
}

.content-text ul {
    margin: 18px 0;
    padding-left: 22px;
}

.content-text ul li {
    margin-bottom: 10px;
    color: #555;
}

/* === SERVICES === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card-body {
    padding: 24px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-card p {
    color: #666;
}

/* === CTA === */
.cta {
    background: linear-gradient(135deg, #2c5fcc, #6c34b4);
    color: #fff;
    text-align: center;
}

.cta h2 {
    font-size: 34px;
    margin-bottom: 18px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 28px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

/* === CONTACT === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    background: #fff;
    padding: 36px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.contact-info h3 {
    color: #2c5fcc;
    margin-bottom: 22px;
    font-size: 22px;
}

.contact-info p {
    margin-bottom: 14px;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-info .icon-box {
    background: linear-gradient(135deg, #2c5fcc, #6c34b4);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}

.contact-form {
    background: #fff;
    padding: 36px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    color: #444;
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.25s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2c5fcc;
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 18px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group label {
    font-size: 13px;
    color: #666;
    font-weight: normal;
}

/* === LEGAL PAGES === */
.legal-content {
    background: #fff;
    padding: 50px 40px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    margin-top: 30px;
}

.legal-content h1 {
    color: #2c5fcc;
    margin-bottom: 22px;
    font-size: 32px;
}

.legal-content h2 {
    color: #2c3e50;
    margin: 28px 0 14px;
    font-size: 22px;
}

.legal-content h3 {
    color: #444;
    margin: 22px 0 10px;
    font-size: 18px;
}

.legal-content p {
    margin-bottom: 14px;
    color: #555;
    line-height: 1.8;
}

.legal-content ul {
    margin: 14px 0 14px 22px;
    color: #555;
}

.legal-content ul li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-content .updated {
    color: #888;
    font-style: italic;
    margin-bottom: 28px;
    font-size: 14px;
}

/* === PAGE HEADER === */
.page-header {
    background: linear-gradient(135deg, rgba(44,95,204,0.9), rgba(108,52,180,0.9)), url('../images/hero.jpg') center/cover no-repeat;
    color: #fff;
    padding: 70px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 38px;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 17px;
    opacity: 0.95;
}

/* === FOOTER === */
footer {
    background: #1d2233;
    color: #c7cbd6;
    padding: 55px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 35px;
    margin-bottom: 35px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 18px;
    font-size: 17px;
}

.footer-col p,
.footer-col li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #a8acb8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li a:hover {
    color: #ff7a45;
}

.footer-bottom {
    border-top: 1px solid #2d3349;
    padding-top: 22px;
    text-align: center;
    color: #8b8f9a;
    font-size: 14px;
}

/* === COOKIE BANNER === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1d2233;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.18);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-text a {
    color: #ff7a45;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.cookie-actions button {
    padding: 10px 22px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.25s;
}

.btn-accept {
    background: #ff7a45;
    color: #fff;
}

.btn-accept:hover {
    background: #e8632d;
}

.btn-decline {
    background: transparent;
    color: #fff;
    border: 1px solid #555 !important;
}

.btn-decline:hover {
    background: #2d3349;
}

/* === FORM SUCCESS === */
.form-success {
    background: #d4edda;
    color: #155724;
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 18px;
    border-left: 4px solid #28a745;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
    nav ul {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 18px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    nav ul.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .section-title {
        font-size: 26px;
    }

    .content-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .btn-outline {
        margin-left: 0;
        margin-top: 10px;
    }
}

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

    .hero {
        padding: 70px 18px;
    }

    .page-header h1 {
        font-size: 28px;
    }
}
