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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

html {
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #1e40af;
    font-weight: 600;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background-color: #dc2626;
    color: white;
    border-color: #dc2626;
}

.btn-primary:hover {
    background-color: #b91c1c;
    border-color: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #1e40af;
    border-color: #1e40af;
}

.btn-secondary:hover {
    background-color: #1e40af;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: #666;
    border-color: #d1d5db;
}

.btn-outline:hover {
    background-color: #f3f4f6;
    color: #374151;
    border-color: #9ca3af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.nav {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Logo fallback */
.logo-fallback {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    font-size: 26px;
    font-family: 'Inter', sans-serif;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}

.logo-text {
    font-size: 26px;
    font-weight: 700;
    color: #1e40af;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #1e40af;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #dc2626;
}

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

.bar {
    width: 25px;
    height: 3px;
    background-color: #1e40af;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 100px 0;
    background: linear-gradient(135deg, #f8faff 0%, #e0e7ff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="80" cy="80" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="40" cy="60" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1e40af;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #dc2626;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

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

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: cover;
}

.hero-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1e40af;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 3rem;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: white;
}

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #1e40af);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1e40af;
}

.service-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    background: #f8faff;
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid #dc2626;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

/* Workshop Section */
.workshop {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8faff 0%, #e0e7ff 100%);
}

.workshop-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.workshop-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.workshop-subtitle {
    font-size: 1.75rem;
    color: #1e40af;
    margin-bottom: 1.5rem;
}

.workshop-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.workshop-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.services-subtitle {
    font-size: 1.75rem;
    color: #1e40af;
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.workshop-card {
    background: white;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #dc2626;
}

.workshop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.workshop-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.workshop-title {
    font-size: 1.25rem;
    color: #1e40af;
    margin-bottom: 10px;
}

.workshop-desc {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.workshop-features {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.feature-highlight {
    padding: 50px 40px;
}

.feature-title {
    font-size: 1.75rem;
    color: #1e40af;
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-text h4 {
    color: #1e40af;
    margin-bottom: 5px;
    font-size: 1.125rem;
}

.feature-text p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.workshop-cta {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 2rem;
    color: white;
    margin-bottom: 15px;
}

.cta-text {
    font-size: 1.125rem;
    margin-bottom: 30px;
    color: #bfdbfe;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.workshop-cta .btn {
    background-color: white;
    color: #1e40af;
    border-color: white;
}

.workshop-cta .btn:hover {
    background-color: #f8faff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.workshop-cta .btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.workshop-cta .btn-secondary:hover {
    background-color: white;
    color: #1e40af;
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.8;
}

.values {
    display: grid;
    gap: 25px;
    margin-top: 2rem;
}

.value-item {
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.value-title {
    color: #dc2626;
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.value-text {
    color: #666;
    margin: 0;
}

.about-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.contact-icon {
    font-size: 1.5rem;
    margin-top: 5px;
}

.contact-details h4 {
    color: #1e40af;
    margin-bottom: 8px;
    font-size: 1.125rem;
}

.contact-details p {
    margin: 0;
    color: #666;
}

.contact-details a {
    color: #dc2626;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Form Styles */
.contact-form {
    background: #f8faff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #1e40af;
    font-weight: 500;
}

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

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

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

/* Map */
.map-container {
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background-color: #1e40af;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
    object-fit: contain;
}

.footer-logo-text {
    font-size: 22px;
    font-weight: 600;
}

.footer-description {
    color: #bfdbfe;
    margin: 0;
}

.footer-contact h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.125rem;
}

.footer-contact p {
    color: #bfdbfe;
    margin-bottom: 5px;
}

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

.footer-bottom p {
    color: #bfdbfe;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 20px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .workshop-intro {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .workshop-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .workshop-card {
        padding: 25px 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-highlight {
        padding: 40px 30px;
    }
    
    .workshop-cta {
        padding: 40px 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .services,
    .about,
    .contact {
        padding: 60px 0;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
}

/* Animation and Smooth Scrolling */
@media (prefers-reduced-motion: no-preference) {
    .service-card,
    .value-item {
        animation: fadeInUp 0.6s ease-out;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Focus Styles for Accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
textarea:focus {
    outline: 2px solid #1e40af;
    outline-offset: 2px;
}

/* Image Placeholders */
.img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 12px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    text-align: center;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.img-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.img-placeholder .icon {
    font-size: 3rem;
    margin-bottom: 10px;
    z-index: 1;
    position: relative;
}

.img-placeholder .text {
    font-size: 1.1rem;
    z-index: 1;
    position: relative;
}

.hero-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.workshop-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.about-placeholder {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
}

/* Privacy Policy Page Styles */
.privacy-page {
    margin-top: 80px;
    padding: 60px 0;
    background-color: #fafafa;
    min-height: calc(100vh - 160px);
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.privacy-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e0e7ff;
}

.privacy-title {
    font-size: 2.5rem;
    color: #1e40af;
    margin-bottom: 15px;
}

.privacy-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 10px;
}

.privacy-date {
    color: #888;
    font-size: 0.9rem;
    font-style: italic;
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section h2 {
    color: #1e40af;
    font-size: 1.75rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e7ff;
}

.privacy-section h3 {
    color: #dc2626;
    font-size: 1.35rem;
    margin: 25px 0 15px 0;
}

.privacy-section h4 {
    color: #1e40af;
    font-size: 1.1rem;
    margin: 20px 0 10px 0;
}

.privacy-section p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.privacy-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.privacy-section li {
    color: #666;
    line-height: 1.6;
    margin-bottom: 5px;
}

.contact-info-box {
    background: #f8faff;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #1e40af;
    margin: 20px 0;
}

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

.contact-info-box strong {
    color: #1e40af;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.right-item {
    background: #f8faff;
    padding: 20px;
    border-radius: 12px;
    border-left: 3px solid #dc2626;
}

.right-item h4 {
    color: #1e40af;
    margin-bottom: 10px;
    font-size: 1rem;
}

.right-item p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-section {
    background: #f8faff;
    padding: 30px;
    border-radius: 16px;
    margin: 25px 0;
}

.privacy-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #e0e7ff;
    text-align: center;
}

.back-link {
    margin-bottom: 20px;
}

.privacy-update {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
}

/* Footer link styling */
.footer-bottom a {
    color: #bfdbfe;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: white;
    text-decoration: underline;
}

/* Responsive Privacy Policy */
@media (max-width: 768px) {
    .privacy-content {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .privacy-title {
        font-size: 2rem;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
    }
    
    .privacy-section h3 {
        font-size: 1.25rem;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-box,
    .contact-section {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .privacy-page {
        padding: 30px 0;
    }
    
    .privacy-content {
        padding: 25px 15px;
    }
    
    .privacy-header {
        margin-bottom: 30px;
    }
    
    .privacy-title {
        font-size: 1.75rem;
    }
    
    .privacy-subtitle {
        font-size: 1.1rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .hero-buttons,
    .contact-form,
    .back-link {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero,
    .services,
    .about,
    .contact,
    .privacy-page {
        padding: 20px 0;
    }
    
    .privacy-content {
        box-shadow: none;
        padding: 20px;
    }
}