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

:root {
    --primary-color: #f5f5f5;
    --secondary-color: #2c3e50;
    --accent-color: #d4a574;
    --text-color: #333333;
    --light-text: #ffffff;
    --border-color: #e0e0e0;
    --font-main: 'Poppins', sans-serif;
    --font-accent: 'Lora', serif;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-text);
}

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

h1, h2, h3, h4 {
    font-family: var(--font-accent);
    font-weight: 600;
    line-height: 1.3;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.1rem; }

.accent {
    color: var(--accent-color);
}

.btn-primary, .btn-secondary, .cookie-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 2px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--light-text);
}

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

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

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

/* Navigation */
.navbar {
    background-color: var(--light-text);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.nav-brand h1 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin: 0;
}

.nav-brand .tagline {
    display: block;
    font-size: 0.75rem;
    color: var(--accent-color);
    margin-top: -5px;
    font-weight: 500;
    letter-spacing: 1px;
}

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

.nav-links li {
    margin-left: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    font-size: 0.9rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-number {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(45, 62, 80, 0.4);
}

.hero-content {
    z-index: 10;
    max-width: 800px;
    padding: 20px;
}

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

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-buttons a {
    margin: 0 10px;
}

/* Sections */
section {
    padding: 80px 0;
}

section h2 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 50px;
}

/* Block 2: Values */
.values {
    background-color: var(--primary-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    padding: 30px;
    text-align: center;
    border-top: 3px solid var(--accent-color);
}

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

.value-card h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* Block 3: Services */
.services {
    background-color: var(--light-text);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-item {
    padding: 30px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.service-item h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* Block 4: Featured */
.featured {
    background-color: var(--primary-color);
}

.featured .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.featured-content {
    flex: 1;
}

.featured-content h2 {
    text-align: left;
    margin-bottom: 20px;
}

.featured-content p {
    margin-bottom: 30px;
    line-height: 1.8;
}

.featured-image {
    flex: 1;
    border-radius: 2px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Block 5: Process */
.process {
    background-color: var(--light-text);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.step {
    flex-basis: calc(20% - 16px);
    text-align: center;
}

.step-num {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: var(--light-text);
    font-weight: 600;
    margin-bottom: 15px;
}

.step h4 {
    color: var(--secondary-color);
}

/* Block 6: Testimonials */
.testimonials {
    background-color: var(--primary-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    padding: 30px;
    background-color: var(--light-text);
    border-left: 4px solid var(--accent-color);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 15px;
    color: #666;
}

.testimonial footer {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Block 7: CTA */
.cta {
    background-color: var(--secondary-color);
    color: var(--light-text);
    text-align: center;
    padding: 60px 0;
}

.cta h2 {
    color: var(--light-text);
    margin-bottom: 15px;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #bbb;
    padding: 50px 0 20px;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-section {
    flex-basis: 23%;
    margin-bottom: 20px;
}

.footer-section h3, .footer-section h4 {
    color: var(--light-text);
    margin-bottom: 15px;
}

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

.footer-section ul li a {
    color: #bbb;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.social-links a {
    color: #bbb;
    font-size: 1.1rem;
    margin-right: 12px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom a {
    color: var(--accent-color);
    text-decoration: none;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(45, 62, 80, 0.95);
    color: var(--light-text);
    padding: 15px 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
}

.cookie-text {
    display: flex;
    align-items: center;
    flex: 1;
}

.cookie-text i {
    font-size: 1.5rem;
    margin-right: 15px;
    color: var(--accent-color);
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
}

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

.cookie-btn {
    padding: 8px 15px;
    font-size: 0.9rem;
}

.cookie-btn.accept {
    background-color: var(--accent-color);
    color: var(--secondary-color);
}

.cookie-btn.accept:hover {
    opacity: 0.9;
}

.cookie-btn.decline {
    background-color: transparent;
    color: var(--light-text);
    border: 1px solid var(--light-text);
}

.cookie-btn.decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cookie-link {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Content Pages */
.content-page {
    padding: 100px 0;
    min-height: 70vh;
}

.content-page h2 {
    text-align: left;
    margin-bottom: 30px;
}

.content-page ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .hero-content h1 { font-size: 3rem; }
    .featured .container { flex-direction: column; }
    .process-steps .step { flex-basis: calc(33.33% - 14px); }
    .footer-section { flex-basis: 45%; }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .process-steps .step { flex-basis: calc(50% - 10px); }
    .cookie-content { flex-direction: column; text-align: center; }
    .cookie-text { margin-bottom: 10px; }
    .cookie-actions { justify-content: center; }
    .footer-section { flex-basis: 100%; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2rem; }
    .process-steps .step { flex-basis: 100%; }
}
