/* Base Styles */
:root {
    --color-bg-primary: #F5F8FC;
    --color-accent: #0C3C78;
    --color-secondary: #98C1D9;
    --color-text: #111111;
    --color-btn: #0E76A8;
    --color-btn-hover: #084C9E;
    --color-warning: #F2C94C;
    --color-card-bg: #FFFFFF;
    --color-border: #E0E6ED;
    --container-width: 1200px;
    --border-radius: 8px;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--color-bg-primary);
    color: var(--color-text);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--color-btn);
    transition: var(--transition);
}

a:hover {
    color: var(--color-btn-hover);
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--color-btn);
    color: white;
    border-radius: var(--border-radius);
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--color-btn-hover);
    color: white;
}

.btn-secondary {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    color: var(--color-btn);
    border: 2px solid var(--color-btn);
    border-radius: var(--border-radius);
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background-color: var(--color-btn-hover);
    border-color: var(--color-btn-hover);
    color: white;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    line-height: 1.2;
}

section {
    padding: 80px 0;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--color-accent);
}

/* Header */
header {
    background-color: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    height: 70px;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--color-accent);
}

nav ul {
    display: flex;
    gap: 20px;
    align-items: center;
    height: 100%;
}

nav a {
    font-weight: 600;
    color: var(--color-text);
    display: flex;
    align-items: center;
    height: 100%;
}

nav a:hover {
    color: var(--color-btn);
}

nav a.btn-primary {
    color: white;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-accent);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background: url('./img/jEqUEQ.jpg') center center/cover no-repeat;
    padding: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-text h3 {
    color: var(--color-accent);
    margin-top: 20px;
    margin-bottom: 10px;
}

/* Benefits Section */
.benefits-section {
    background-color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: var(--color-card-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    margin-bottom: 15px;
    color: var(--color-accent);
}

/* Services & Pricing Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.service-card {
    background-color: var(--color-card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-header {
    background-color: var(--color-secondary);
    color: var(--color-accent);
    padding: 20px;
    text-align: center;
}

.service-card.featured .service-header {
    background-color: var(--color-accent);
    color: white;
}

.service-header h3 {
    margin-bottom: 10px;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
}

.service-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px;
}

.service-content ul {
    margin-bottom: 25px;
}

.service-content li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.service-content li::before {
    content: "✓";
    color: var(--color-accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.service-content .btn-secondary, 
.service-content .btn-primary {
    display: block;
    width: 100%;
    text-align: center;
}

.disclaimer {
    text-align: center;
    font-size: 0.9rem;
    color: #777;
}

/* Process Section */
.process-section {
    background-color: var(--color-bg-primary);
}

.process-steps {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
    gap: 20px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.step-number {
    background-color: var(--color-accent);
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content {
    padding: 20px;
}

.step-content h3 {
    margin-bottom: 5px;
    color: var(--color-accent);
}

/* Why Choose Us Section */
.why-us-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.why-us-image {
    flex: 0.8;
}

.why-us-points {
    flex: 1.2;
}

.point {
    margin-bottom: 25px;
}

.point h3 {
    color: var(--color-accent);
    margin-bottom: 10px;
}

/* Reviews Section */
.reviews-section {
    background-color: white;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background-color: var(--color-card-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
}

.rating {
    color: var(--color-warning);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.reviewer {
    margin-top: 15px;
    font-weight: bold;
    text-align: right;
    color: var(--color-accent);
}

/* FAQ Section */
.faq-section {
    background-color: var(--color-bg-primary);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-item summary {
    padding: 20px;
    font-weight: bold;
    color: var(--color-accent);
    cursor: pointer;
    position: relative;
    outline: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 20px;
    transition: var(--transition);
}

.faq-item[open] summary::after {
    content: "-";
}

.faq-content {
    padding: 0 20px 20px 20px;
}

/* Order Form Section */
.order-section {
    background-color: white;
}

form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

input, select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    font-size: 1rem;
}

select {
    appearance: none;
    background: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>") no-repeat;
    background-position: right 10px top 50%;
}

option {
    color: black;
    background-color: white;
}

.form-check {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.form-check input {
    width: auto;
    margin-right: 10px;
}

button[type="submit"] {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
}

/* Footer */
footer {
    background-color: var(--color-accent);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-about {
    max-width: 300px;
}

.footer-about .logo {
    color: white;
    margin-bottom: 15px;
}

.footer-contact h3, 
.footer-links h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

footer a {
    color: var(--color-secondary);
}

footer a:hover {
    color: white;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    z-index: 1000;
    display: none;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

/* Media Queries */
@media screen and (max-width: 992px) {
    section {
        padding: 60px 0;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .about-content,
    .why-us-content {
        flex-direction: column;
    }
    
    .about-image,
    .why-us-image {
        order: -1;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 768px) {
    nav ul {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-section {
        height: 400px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        margin-top: 15px;
    }
}

@media screen and (max-width: 576px) {
    section {
        padding: 40px 0;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
}
