/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 20px 0;
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.cookie-btn.accept:hover {
    background: #c2185b;
}

.cookie-btn.decline {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-btn.decline:hover {
    background: white;
    color: #333;
}

.cookie-link {
    color: #e91e63;
    text-decoration: none;
    font-size: 14px;
}

.cookie-link:hover {
    text-decoration: underline;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    padding: 15px 0;
}

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

.nav-brand {
    text-decoration: none;
}

.nav-brand h1 {
    color: #e91e63;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #e91e63;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f4f0 0%, #e8d5c4 100%);
    padding: 80px 0;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-image {
    margin-bottom: 40px;
}

.hero-image img {
    width: 100%;
    max-width: 700px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
    text-align: justify;
}

.cta-button {
    background: #e91e63;
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
    text-decoration: none;
}

.cta-button:hover {
    background: #c2185b;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(233, 30, 99, 0.4);
}

/* Stats Section */
.stats {
    background: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.stats-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 60px;
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}

.stat-item {
    flex: 1;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #e91e63;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f4f0 0%, #e8d5c4 100%);
}

.services-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 60px;
}

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

.service-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #e91e63;
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
    color: #666;
}

.service-card li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.service-card li:before {
    content: "•";
    color: #e91e63;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.services .cta-button {
    display: block;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #fff;
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.about-text p {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.8;
    text-align: justify;
}

.advantages {
    margin-top: 40px;
}

.advantages h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}

.advantages-grid {
    display: grid;
    gap: 25px;
}

.advantage-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.advantage-number {
    background: #e91e63;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
}

.advantage-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.advantage-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.about-image {
    flex: 0 0 400px;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f4f0 0%, #e8d5c4 100%);
}

.contact-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.contact-image {
    flex: 0 0 400px;
}

.contact-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper {
    flex: 1;
}

.contact-form-wrapper h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.contact-form-wrapper > p {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-form {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e91e63;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

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

.form-submit {
    background: #e91e63;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

.form-submit:hover {
    background: #c2185b;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(233, 30, 99, 0.4);
}

.contact-info {
    color: #666;
    font-size: 14px;
}

.contact-info p {
    margin-bottom: 5px;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-brand h3 {
    color: #e91e63;
    font-size: 20px;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 30px;
}

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

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

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

.footer-bottom p {
    color: #999;
    font-size: 14px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content {
        gap: 40px;
    }
    
    .about-image {
        flex: 0 0 300px;
    }
    
    .contact-content {
        gap: 40px;
    }
    
    .contact-image {
        flex: 0 0 300px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Cookie Banner Mobile */
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Header Mobile */
    .navbar .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    /* Hero Mobile */
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        text-align: left;
    }
    
    /* Stats Mobile */
    .stats {
        padding: 60px 0;
    }
    
    .stats-grid {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    /* Services Mobile */
    .services {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 25px;
    }
    
    /* About Mobile */
    .about {
        padding: 60px 0;
    }
    
    .about-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-image {
        flex: none;
        order: -1;
    }
    
    .about-image img {
        height: 250px;
    }
    
    .about-text h2 {
        font-size: 28px;
    }
    
    .about-text p {
        text-align: left;
    }
    
    /* Contact Mobile */
    .contact {
        padding: 60px 0;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-image {
        flex: none;
        order: -1;
    }
    
    .contact-image img {
        height: 200px;
    }
    
    .contact-form-wrapper h2 {
        font-size: 24px;
    }
    
    /* Footer Mobile */
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    /* Hero Mobile Small */
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 14px;
    }
    
    /* Stats Mobile Small */
    .stats-title {
        font-size: 28px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    /* Services Mobile Small */
    .services-title {
        font-size: 28px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-card h3 {
        font-size: 16px;
    }
    
    .service-card li {
        font-size: 13px;
    }
    
    /* About Mobile Small */
    .about-text h2 {
        font-size: 24px;
    }
    
    .advantages h3 {
        font-size: 20px;
    }
    
    .advantage-number {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .advantage-content h4 {
        font-size: 14px;
    }
    
    .advantage-content p {
        font-size: 13px;
    }
    
    /* Contact Mobile Small */
    .contact-form-wrapper h2 {
        font-size: 20px;
    }
    
    .contact-form-wrapper > p {
        font-size: 13px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .form-submit {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .contact-info {
        font-size: 13px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation for elements coming into view */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.stats-grid,
.service-card,
.about-content,
.contact-content {
    animation: fadeInUp 0.8s ease-out;
}

.about-text ul {
    margin-bottom: 24px;
}