:root {
    --primary: #0056b3;
    --secondary: #6c757d;
    --dark: #212529;
    --light: #f8f9fa;
    --accent: #ffc107;
    --success: #28a745;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
}

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

/* Top Bar Marquee */
.top-bar {
    background: var(--dark);
    color: var(--white);
    overflow: hidden;
    white-space: nowrap;
    position: sticky;
    top: 0;
    z-index: 1001;
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 2px solid var(--primary);
}

.marquee {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 40s linear infinite;
}

.marquee span {
    display: inline-block;
    padding-right: 50px;
}

@keyframes marquee {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

/* Header & Nav */
.main-header {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 35px; /* Adjust based on top-bar height */
    z-index: 1000;
}

.main-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary);
}

.logo-img {
    height: 45px;
    margin-right: 10px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    padding: 10px 15px;
    transition: var(--transition);
}

.nav-menu li a:hover, .nav-menu li a.active {
    color: var(--primary);
}

/* Hero */
.hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    margin-left: 10px;
}

.btn-primary:hover {
    background: #004494;
}

.btn-sm {
    padding: 5px 15px;
    font-size: 0.8rem;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: -50px auto 50px;
    position: relative;
    z-index: 10;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

/* Content Pages */
.page-content {
    padding: 80px 20px;
}

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

.img-rounded {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Timeline */
.timeline {
    border-left: 2px solid var(--primary);
    padding-left: 20px;
    margin: 30px 0;
}

.timeline-item {
    margin-bottom: 30px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -29px;
    top: 5px;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border-radius: 50%;
}

/* Form */
.styled-form .form-group {
    margin-bottom: 15px;
}

.styled-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.styled-form input, .styled-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Contact Details */
.info-list {
    list-style: none;
    margin-bottom: 20px;
}

.info-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.info-list i {
    margin-right: 15px;
    color: var(--primary);
    font-size: 1.2rem;
}

/* Footer */
.main-footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-links ul, .footer-legal ul {
    list-style: none;
}

.footer-links a, .footer-legal a {
    color: #bbb;
    text-decoration: none;
    line-height: 2;
    transition: var(--transition);
}

.footer-links a:hover, .footer-legal a:hover {
    color: var(--primary);
}

.social-icons a {
    color: var(--white);
    font-size: 1.5rem;
    margin-right: 15px;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #444;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

/* Floats */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--success);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(33, 37, 41, 0.95);
    color: var(--white);
    padding: 20px 0;
    z-index: 9999;
    display: none;
}

.cookie-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

/* Responsive */
@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .nav-menu {
        display: none; /* In real app, would add toggle menu */
    }
    .cookie-banner .container {
        flex-direction: column;
        text-align: center;
    }
    .cookie-btns {
        margin-top: 15px;
    }
}

.legal-text h1, .legal-text h3 {
    margin: 20px 0;
}
.legal-text p {
    margin-bottom: 15px;
}

.services-container .service-item {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.services-container .service-item.reverse {
    flex-direction: row-reverse;
}

.services-container img {
    flex: 1;
    max-width: 50%;
    border-radius: 15px;
}

.service-text {
    flex: 1;
}

.service-text ul {
    margin-top: 15px;
    margin-left: 20px;
}