* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #1a2b5f;
    --orange: #f58220;
    --orange-dark: #e0711a;
    --blue: #2a6dd6;
    --light-bg: #f8f9fc;
    --white: #ffffff;
    --gray-text: #5a6577;
    --gray-light: #e8ecf2;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--navy);
    background: var(--white);
    line-height: 1.6;
}

html {
    scroll-padding-top: 80px;
    scroll-behavior: smooth;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: var(--white);
    border-bottom: 1px solid var(--gray-light);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-logo img {
    height: 50px;
}

nav a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 600;
    margin-left: 2rem;
    font-size: 0.95rem;
    transition: color 0.2s;
}

nav a:hover {
    color: var(--orange);
}

/* HERO */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, #243a7a 100%);
    color: var(--white);
    text-align: center;
    padding: 5rem 5% 4rem;
}

.hero img {
    height: 120px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero h1 span {
    color: var(--orange);
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.hero-btn {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    padding: 0.85rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: background 0.2s, transform 0.2s;
}

.hero-btn:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}

/* SECTIONS */
section {
    padding: 4rem 5%;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.section-title span {
    color: var(--orange);
}

.section-subtitle {
    text-align: center;
    color: var(--gray-text);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ABOUT */
.about {
    background: var(--light-bg);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    color: var(--gray-text);
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(26, 43, 95, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--orange), #ffaa44);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.8rem;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    color: var(--navy);
}

.service-card p {
    color: var(--gray-text);
    font-size: 0.95rem;
}

/* WHY US */
.why-us {
    background: var(--light-bg);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.why-item {
    text-align: center;
    padding: 1.5rem;
}

.why-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 0.3rem;
}

.why-item h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

.why-item p {
    color: var(--gray-text);
    font-size: 0.9rem;
}

/* CONTACT */
.contact {
    background: var(--navy);
    color: var(--white);
    text-align: center;
}

.contact .section-title {
    color: var(--white);
}

.contact .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.contact-email {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    padding: 0.85rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background 0.2s, transform 0.2s;
}

.contact-email:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}

/* FOOTER */
footer {
    background: #111b3a;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 2rem 5%;
    font-size: 0.9rem;
}

footer .footer-company {
    margin-bottom: 0.3rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

footer .footer-address {
    margin-bottom: 0.5rem;
}

footer .footer-links {
    margin-top: 0.8rem;
}

footer .footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin: 0 0.8rem;
    font-size: 0.85rem;
    transition: color 0.2s;
}

footer .footer-links a:hover {
    color: var(--orange);
}

footer .footer-copy {
    margin-top: 0.8rem;
    font-size: 0.8rem;
    opacity: 0.5;
}

/* LEGAL PAGES */
.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 5% 4rem;
}

.legal-updated {
    text-align: center;
    color: var(--gray-text);
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
}

.legal-content p {
    color: var(--gray-text);
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.legal-content ul {
    color: var(--gray-text);
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content ul li {
    margin-bottom: 0.4rem;
    font-size: 1rem;
}

.legal-content a {
    color: var(--blue);
    text-decoration: none;
}

.legal-content a:hover {
    color: var(--orange);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0 1.5rem;
    font-size: 0.95rem;
}

.cookie-table th,
.cookie-table td {
    border: 1px solid var(--gray-light);
    padding: 0.7rem 1rem;
    text-align: left;
}

.cookie-table th {
    background: var(--light-bg);
    color: var(--navy);
    font-weight: 600;
}

.cookie-table td {
    color: var(--gray-text);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 0.8rem;
    }

    nav a {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

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

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