/* Global Styles */
:root {
    --primary-color: #1c82ad;
    --primary-light: #4da8cc;
    --secondary-color: #121f2f;
    --secondary-light: #1e3858;
    --accent-color: #f0f8ff;
    --text-color: #333;
    --text-light: #666;
    --text-white: #fff;
    --bg-light: #f5f5f5;
    --bg-dark: #111827;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 5px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--secondary-color);
}

h1 {
    font-size: 2.5rem;
    color: var(--text-white);
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

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

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-light);
}

ul {
    list-style: none;
}

section {
    padding: 5rem 0;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
    font-size: 0.9rem;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

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

.btn-tertiary {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-tertiary:hover {
    background-color: var(--text-white);
    color: var(--secondary-color);
}

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    width: 100%;
}

.btn-submit:hover {
    background-color: var(--primary-light);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-dark);
    color: var(--text-white);
    z-index: 1000;
    padding: 1.5rem 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.cookie-content h2 {
    color: var(--text-white);
    margin-bottom: 1rem;
}

.cookie-content p {
    margin-bottom: 1.5rem;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Header & Navigation */
header {
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
}

nav ul {
    display: flex;
    gap: 1.5rem;
}

nav ul li a {
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 500;
}

nav ul li a:hover {
    color: var(--primary-light);
}

/* Hero Section */
.hero {
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    padding: 3rem 0;
}

.hero-text p {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Services Section */
.services {
    background-color: #fff;
}

.services-intro {
    margin-bottom: 4rem;
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.services-text p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.services-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Packages */
.packages {
    padding-top: 2rem;
}

.package-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.package-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-card h3 {
    color: var(--primary-color);
}

.package-card h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.package-card ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.package-card ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.package-card ul li::before {
    content: "•";
    color: var(--primary-color);
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: -0.2rem;
}

.price {
    margin: auto 0 1.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Why Choose Us Section */
.why-us {
    background-color: var(--bg-dark);
    color: var(--text-white);
    text-align: center;
}

.why-us h2 {
    color: var(--text-white);
    margin-bottom: 3rem;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-card h3 {
    color: var(--primary-light);
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
    background-color: #fff;
}

.testimonials-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.testimonials-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.testimonials-text h2 {
    margin-bottom: 1.5rem;
}

.testimonials-text p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Contact Form Section */
.contact {
    background-color: var(--bg-light);
    text-align: center;
}

.contact h2 {
    margin-bottom: 1rem;
}

.contact p {
    max-width: 700px;
    margin: 0 auto 2rem;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
}

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

/* Call to Action Section */
.cta {
    background-color: #fff;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.cta-text h2 {
    margin-bottom: 1.5rem;
}

.cta-text p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-info {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.icon-location,
.icon-phone,
.icon-mail {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.cta-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Footer */
footer {
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--text-white);
    font-size: 0.9rem;
}

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

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content,
    .services-content,
    .testimonials-content,
    .cta-content {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        order: 2;
    }
    
    .hero-text {
        order: 1;
        padding: 3rem 0 1rem;
    }
    
    .testimonials-image,
    .cta-image {
        display: none;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    section {
        padding: 3rem 0;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .benefits {
        grid-template-columns: 1fr;
    }
}