/* Reset and base styles */
html {
    font-size: 10px;
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    font-size: 1.6rem;
}

.container {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 0.1rem solid #ddd;
    padding: 2rem;
    box-shadow: 0 -0.2rem 1rem rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 120rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cookie-content p {
    font-size: 1.4rem;
    line-height: 1.5;
}

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

.cookie-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.4rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: #E85A4F;
    color: white;
}

.cookie-accept:hover {
    background: #d64a3f;
}

.cookie-decline {
    background: #f5f5f5;
    color: #333;
}

.cookie-decline:hover {
    background: #e5e5e5;
}

/* Header */
.header {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 900;
}

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

.logo h1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #E85A4F;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #E85A4F;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #E85A4F 0%, #F4A261 100%);
    color: white;
    padding: 12rem 0 8rem;
    margin-top: 7rem;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 5rem;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 30rem;
}

.hero-title {
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-button {
    background: white;
    color: #E85A4F;
    padding: 1.5rem 3rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.cta-button:hover {
    background: #f5f5f5;
    transform: translateY(-0.2rem);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.2);
}

.hero-image {
    flex: 1;
    min-width: 30rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.3);
}

/* Section Styles */
.section-title {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #E85A4F;
    line-height: 1.2;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: white;
}

.about-content {
    display: flex;
    gap: 5rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.about-text {
    flex: 2;
    min-width: 30rem;
}

.about-text p {
    font-size: 1.6rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #555;
}

.about-image {
    flex: 1;
    min-width: 25rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
}

/* Philosophy Section */
.philosophy {
    padding: 8rem 0;
    background: #f8f9fa;
}

.philosophy-content {
    display: flex;
    gap: 5rem;
    align-items: center;
    flex-wrap: wrap;
}

.philosophy-image {
    flex: 1;
    min-width: 25rem;
}

.philosophy-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
}

.philosophy-text {
    flex: 2;
    min-width: 30rem;
}

.philosophy-list {
    list-style: none;
    margin-bottom: 3rem;
}

.philosophy-list li {
    font-size: 1.6rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #555;
    position: relative;
    padding-left: 2rem;
}

.philosophy-list li:before {
    content: "•";
    color: #E85A4F;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.cta-button-secondary {
    background: #E85A4F;
    color: white;
    padding: 1.5rem 3rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.cta-button-secondary:hover {
    background: #d64a3f;
    transform: translateY(-0.2rem);
    box-shadow: 0 0.5rem 1.5rem rgba(232, 90, 79, 0.3);
}

/* Services Section */
.services {
    padding: 8rem 0;
    background: white;
}

.services-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 25rem;
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 1rem;
    transition: transform 0.3s ease;
    border-radius: 24px;
background: linear-gradient(90deg, rgba(233, 75, 40, 0.10) 0%, rgba(219, 153, 39, 0.10) 100%);
}

.service-card:hover {
    transform: translateY(-0.5rem);
}

.service-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.icon-grid {
    width: 6rem;
    height: 6rem;
    background: #E85A4F;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.icon-grid:before {
    content: "";
    width: 2rem;
    height: 2rem;
    background: white;
    border-radius: 0.2rem;
}

.service-card h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
}

.service-card p {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #666;
}

/* Blog Section */
.blog {
    padding: 8rem 0;
    background: #f8f9fa;
}

.blog-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.blog-card {
    flex: 1;
    min-width: 25rem;
    background: white;

    overflow: hidden;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border-radius: 24px;
    padding: 20px;
background: linear-gradient(90deg, rgba(233, 75, 40, 0.10) 0%, rgba(219, 153, 39, 0.10) 100%);
}

.blog-card:hover {
    transform: translateY(-0.5rem);
}

.blog-card img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
}

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.4;
}

.blog-content p {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #666;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: linear-gradient(135deg, #E85A4F 0%, #F4A261 100%);
    color: white;
}

.contact-content {
    display: flex;
    gap: 5rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 30rem;
}

.contact-info h3 {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.contact-info p {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.6rem;
}

.contact-icon {
    font-size: 2rem;
}

.contact-form {
    flex: 1;
    min-width: 30rem;
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.5rem;
    border: 0.1rem solid #ddd;
    border-radius: 0.5rem;
    font-size: 1.6rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #E85A4F;
}

.submit-btn {
    width: 100%;
    background: #E85A4F;
    color: white;
    padding: 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.submit-btn:hover {
    background: #d64a3f;
    transform: translateY(-0.2rem);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-logo h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #E85A4F;
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #E85A4F;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 0.1rem solid #555;
}

.footer-bottom p {
    font-size: 1.4rem;
    color: #ccc;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-title {
        font-size: 3.2rem;
    }

    .hero-description {
        font-size: 1.6rem;
    }

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

    .hero-content,
    .about-content,
    .philosophy-content,
    .contact-content {
        flex-direction: column;
        gap: 3rem;
    }

    .services-grid,
    .blog-grid {
        flex-direction: column;
    }

    .service-card,
    .blog-card {
        min-width: 100%;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 10rem 0 6rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

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

    .cta-button,
    .cta-button-secondary {
        width: 100%;
        text-align: center;
    }

    .contact-form {
        padding: 2rem;
    }

    .nav-menu {
        gap: 0.5rem;
    }

    .nav-menu a {
        font-size: 1.2rem;
    }
}