/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Bricolage Grotesque', sans-serif;
    line-height: 1.6;
    color: #2D3748;
    background-color: #FFFFFF;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

/* Header styles */
.header {
    background: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 32px;
    height: 32px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2D3748;
}

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

.nav-menu a {
    color: #2D3748;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #4CAF50;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2D3748;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero section */
.hero {
    margin-top: 80px;
    padding: 4rem 0;
    background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #1A202C;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    color: #4A5568;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: #4CAF50;
    color: #FFFFFF;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    background: #357ABD;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.secondary-button {
    display: inline-block;
    background: transparent;
    color: #4CAF50;
    padding: 1rem 2rem;
    border: 2px solid #4CAF50;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.secondary-button:hover {
    background: #4CAF50;
    color: #FFFFFF;
}

/* Features section */
.features {
    padding: 4rem 0;
    background: #FFFFFF;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: #F7FAFC;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgb(76 175 80);
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1A202C;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #4A5568;
    line-height: 1.6;
}

/* Services section */
.services-preview {
    padding: 4rem 0;
    background: #F7FAFC;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 3rem;
}

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

.service-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgb(203, 241, 204);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgb(76 175 80);
}

.service-icon {
    margin-bottom: 1.5rem;
}

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

.service-card p {
    color: #4A5568;
    margin-bottom: 1.5rem;
}

.rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.rating span:first-child {
    color: #F6AD55;
    font-size: 1.2rem;
}

.rating-text {
    color: #4A5568;
    font-weight: 500;
}

.text-center {
    text-align: center;
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
    background: #FFFFFF;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 3rem;
}

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

.testimonial-card {
    background: #F7FAFC;
    border-radius: 12px;
    padding: 2rem;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    opacity: 0.3;
}

.testimonial-content p {
    color: #4A5568;
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-author strong {
    color: #1A202C;
    font-weight: 600;
}

.testimonial-author span {
    color: #718096;
    font-size: 0.9rem;
}

/* Newsletter */
.newsletter {
    padding: 4rem 0;
    background: #4CAF50;
    color: #FFFFFF;
}

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

.newsletter-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-text p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.newsletter-form {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-group label {
    color: #4A5568;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-group a {
    color: #4CAF50;
    text-decoration: underline;
}

/* Contact section */
.contact {
    padding: 4rem 0;
    background: #F7FAFC;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    background: #E6FFFA;
    padding: 0.75rem;
    border-radius: 8px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1A202C;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #4A5568;
}

.contact-form {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgb(155, 187, 156);
}

/* Footer */
.footer {
    background: #1A202C;
    color: #FFFFFF;
    padding: 3rem 0 1rem;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-section p {
    color: #A0AEC0;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #A0AEC0;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FFFFFF;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #A0AEC0;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #4CAF50;
}

.footer-bottom {
    border-top: 1px solid #2D3748;
    padding-top: 1rem;
    text-align: center;
    color: #A0AEC0;
}

/* Cookie */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    display: none;
    
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-content p {
    margin: 0 0 15px 0;
    font-size: 14px;
}

.cookie-content a {
    color: #4CAF50;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.3s;
}

.cookie-btn.primary {
    background: #4CAF50;
    color: white;
}

.cookie-btn:hover {
    opacity: 0.8;
}

.cookie-btn.primary:hover {
    background: #45a049;
}


.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    display: none;
 
}

.cookie-modal-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.cookie-modal h3 {
    margin-top: 0;
    color: #333;
}

.cookie-category {
    margin-bottom: 20px;
}

.cookie-category label {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.cookie-category input {
    margin-right: 10px;
}

.cookie-category p {
    margin: 0;
    font-size: 12px;
    color: #666;
}

.cookie-modal-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}


@media (max-width: 600px) {
    .cookie-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-modal-content {
        width: 95%;
        padding: 15px;
    }

    .cookie-modal-buttons {
        flex-direction: column;
    }
}

/* Page specific styles */

/* Page header */
.page-header {
    margin-top: 80px;
    padding: 3rem 0;
    background: linear-gradient(135deg, #4CAF50 0%, #357ABD 100%);
    color: #FFFFFF;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Services detailed */
.services-detailed {
    padding: 4rem 0;
    background: #FFFFFF;
}

.service-detailed {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #E2E8F0;
}

.service-detailed:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.service-image {
    background: #F7FAFC;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.service-details h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 1rem;
}

.rating-large {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.rating-large .stars {
    color: #F6AD55;
    font-size: 1.5rem;
}

.rating-score {
    font-weight: 600;
    color: #1A202C;
    font-size: 1.2rem;
}

.rating-count {
    color: #718096;
    font-size: 0.9rem;
}

.features-list,
.pricing {
    margin-top: 2rem;
}

.features-list h3,
.pricing h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1A202C;
    margin-bottom: 1rem;
}

.features-list ul {
    list-style: none;
    padding-left: 0;
}

.features-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #4A5568;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #38A169;
    font-weight: bold;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #F7FAFC;
    border-radius: 6px;
}

.price-item span:first-child {
    color: #4A5568;
}

.price-item span:last-child {
    font-weight: 600;
    color: #1A202C;
}

/* Service benefits */
.service-benefits {
    padding: 4rem 0;
    background: #F7FAFC;
}

.service-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 3rem;
}

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

.benefit-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgb(76 175 80);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1A202C;
    margin-bottom: 1rem;
}

/* CTA section */
.cta-section {
    padding: 4rem 0;
    background: #4CAF50;
    color: #FFFFFF;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* About page styles */
.company-story {
    padding: 4rem 0;
    background: #FFFFFF;
}

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

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 2rem;
}

.story-text p {
    color: #4A5568;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.story-image {
    text-align: center;
    background: #F7FAFC;
    border-radius: 12px;
    padding: 2rem;
}

.mission-vision {
    padding: 4rem 0;
    background: #F7FAFC;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.mv-card {
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgb(76 175 80);
}

.mv-icon {
    margin-bottom: 2rem;
}

.mv-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 1.5rem;
}

.mv-card p {
    color: #4A5568;
    font-size: 1.1rem;
    line-height: 1.7;
}

.company-values {
    padding: 4rem 0;
    background: #FFFFFF;
}

.company-values h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 3rem;
}

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

.value-card {
    background: #F7FAFC;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1A202C;
    margin-bottom: 1rem;
}

.value-card p {
    color: #4A5568;
    line-height: 1.6;
}

.team-section {
    padding: 4rem 0;
    background: #F7FAFC;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 2rem;
}

.team-intro {
    text-align: center;
    color: #4A5568;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgb(76 175 80);
}

.stat-icon {
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #4CAF50;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: #4A5568;
    font-weight: 500;
}

.contact-cta {
    padding: 4rem 0;
    background: #4CAF50;
    color: #FFFFFF;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Legal content */
.legal-content {
    padding: 4rem 0;
    background: #FFFFFF;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1A202C;
    margin: 2rem 0 1rem 0;
}

.legal-text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2D3748;
    margin: 1.5rem 0 0.5rem 0;
}

.legal-text p {
    color: #4A5568;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-text ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-text li {
    color: #4A5568;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-text a {
    color: #4CAF50;
    text-decoration: underline;
}

/* Thank you page */
.thank-you-section {
    margin-top: 80px;
    padding: 4rem 0;
    background: #F7FAFC;
    text-align: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-section h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #1A202C;
    margin-bottom: 1rem;
}

.thank-you-message {
    font-size: 1.2rem;
    color: #4A5568;
    margin-bottom: 3rem;
}

.next-steps {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    text-align: left;
}

.next-steps h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 1.5rem;
    text-align: center;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #F7FAFC;
    border-radius: 8px;
}

.step-icon {
    background: #E6FFFA;
    padding: 0.5rem;
    border-radius: 6px;
    flex-shrink: 0;
}

.contact-info {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.contact-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1A202C;
    margin-bottom: 1rem;
}

.contact-info a {
    color: #4CAF50;
    text-decoration: underline;
    font-weight: 600;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.additional-info {
    padding: 4rem 0;
    background: #FFFFFF;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.info-card {
    text-align: center;
    padding: 2rem;
    background: #F7FAFC;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    margin-bottom: 1.5rem;
}

.info-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1A202C;
    margin-bottom: 1rem;
}

.info-card p {
    color: #4A5568;
}

/* Responsive design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-content,
    .newsletter-content,
    .contact-grid,
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .service-detailed {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .secondary-button {
        margin-left: 0;
        margin-top: 1rem;
    }
}