/* Base Styles */
:root {
    --primary-color: #e88331;
    --primary-light: #f9a55f;
    --primary-dark: #d05f15;
    --secondary-color: #fbe6d4;
    --dark-color: #2a2a2a;
    --light-color: #ffffff;
    --gray-color: #f5f5f5;
    --gray-dark: #888888;
    --text-color: #333333;
    --border-radius: 5px;
    --box-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: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

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

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--light-color);
}

.btn-secondary {
    background-color: var(--light-color);
    color: var(--dark-color);
    border: 1px solid var(--gray-dark);
}

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

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    font-size: 2.25rem;
    color: var(--primary-color);
}

section {
    padding: 5rem 0;
    position: relative;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--light-color);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
}

.cookie-content {
    max-width: 1000px;
}

.cookie-content h2 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.cookie-buttons {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

/* Header */
header {
    padding: 1.5rem 0;
    background-color: var(--light-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
}

.logo a:hover {
    color: var(--primary-color);
}

nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-color);
}

nav ul li a.active:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    background-color: var(--light-color);
}

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

.hero-text {
    flex: 1;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
    font-size: 3rem;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image:before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    z-index: -1;
    border-radius: var(--border-radius);
}

.stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
}

.stat {
    flex: 1;
    min-width: 150px;
}

.stat h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 0.9rem;
}

/* Principles Section */
.principles {
    background-color: var(--gray-color);
}

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

.principle {
    background-color: var(--secondary-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.principle:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.principle-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.principle h3 {
    margin-bottom: 1rem;
}

/* Featured Image */
.featured-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    padding: 0;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

/* Purpose Section */
.purpose {
    background: linear-gradient(to bottom, var(--light-color) 0%, var(--secondary-color) 100%);
}

.purpose-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.purpose-text {
    flex: 1.5;
}

.purpose-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.purpose-image {
    flex: 1;
    position: relative;
}

.advantages {
    counter-reset: advantages;
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.advantages li {
    padding-left: 2.5rem;
    position: relative;
    margin-bottom: 1.5rem;
}

.advantages li:before {
    counter-increment: advantages;
    content: counter(advantages) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: var(--primary-color);
}

.advantages h4 {
    margin-bottom: 0.5rem;
}

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

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

.service {
    background-color: var(--gray-color);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.service:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(232, 131, 49, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    color: var(--primary-color);
}

.service h3 {
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--gray-color);
}

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

.testimonial {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.stars {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    background: linear-gradient(to bottom, var(--gray-color) 0%, var(--secondary-color) 100%);
}

.contact-content {
    display: flex;
    gap: 4rem;
}

.contact-text {
    flex: 1;
}

.contact-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-info {
    margin: 2rem 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-image {
    margin-top: 2rem;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.contact-form {
    flex: 1;
    background-color: var(--light-color);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--gray-dark);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 4rem 0 2rem;
}

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

.footer-nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav ul li {
    margin-left: 2rem;
}

.footer-nav ul li a {
    color: var(--light-color);
}

.footer-nav ul li a:hover,
.footer-nav ul li a.active {
    color: var(--primary-light);
}

.footer-info {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-info p {
    margin-bottom: 0;
}

.footer-info a {
    color: var(--primary-light);
}

.footer-info a:hover {
    color: var(--light-color);
}

.copyright {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-dark);
}

/* Page Content (Privacy/Terms) */
.page-content {
    padding: 5rem 0;
}

.page-content h1 {
    margin-bottom: 2rem;
    text-align: center;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.last-updated {
    text-align: right;
    margin-bottom: 2rem;
    font-style: italic;
    color: var(--gray-dark);
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.policy-section h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    margin-bottom: 0.5rem;
}

/* Thank You Page */
.thank-you {
    padding: 6rem 0;
    background-color: var(--light-color);
}

.thank-you-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.thank-you-text {
    flex: 1.5;
}

.thank-you-text h1 {
    margin-bottom: 1.5rem;
}

.thank-you-text .btn {
    margin-top: 1.5rem;
}

.thank-you-image {
    flex: 1;
    position: relative;
}

.thank-you-image:before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    z-index: -1;
    border-radius: var(--border-radius);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        max-width: 90%;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content,
    .purpose-content,
    .contact-content,
    .thank-you-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-image,
    .purpose-image,
    .thank-you-image {
        margin-top: 2rem;
    }
    
    .principles-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .principles-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--light-color);
        padding: 1.5rem;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    nav ul li {
        margin-left: 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-nav ul {
        justify-content: center;
    }
    
    .footer-nav ul li:first-child {
        margin-left: 0;
    }
    
    .footer-info {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .hero {
        padding: 4rem 0;
    }
}