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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #939db2;
    background-color: #0b0b0f;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
}

/* Font display optimization - handled via Google Fonts URL parameter */

.important-text {
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(147, 157, 178, 0.1);
}

.navbar.sticky {
    background: rgb(0 0 0 / 60%);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

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

.nav-logo h2 {
    color: #ff5b2e;
    font-weight: 700;
    font-size: 28px;
    font-family: 'Roboto', sans-serif;
}

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

.nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

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

.btn-primary {
    font-weight: 500;
    font-size: 17px;
    color: #fff;
    border-radius: 100px;
    padding: 0 32px;
    display: inline-block;
    line-height: 60px;
    white-space: nowrap;
    border: 1px solid #e54a26;
    background: #e54a26;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    background: #fff;
    color: #ff5b2e;
    border: 1px solid #ff5b2e;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #939db2;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(11, 11, 15, 0.2), rgba(11, 11, 15, 0.2)), url('../images/hero_image.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 11, 15, 0.3);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
    color: white;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

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

.hero-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
}

.hero-stat .stat-label {
    font-size: 1rem;
    opacity: 0.9;
    color: #fff;
}

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

.btn-secondary {
    font-weight: 500;
    font-size: 17px;
    color: #ff5b2e;
    border-radius: 100px;
    padding: 0 32px;
    display: inline-block;
    line-height: 60px;
    white-space: nowrap;
    border: 1px solid #ff5b2e;
    background: transparent;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover,
.hero-buttons a.btn-secondary:hover {
    background: #ff5b2e;
    color: #fff;
    border: 1px solid #ff5b2e;
}

.hero-buttons a.btn-secondary {
    background: #fff;
    color: #ff5b2e;
    border: 1px solid #ff5b2e;
}

.testimonial-author a {
    color: #ff5b2e;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #131419;
}

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

.service-card {
    background: #0b0b0f;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(147, 157, 178, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 91, 46, 0.2);
    border-color: rgba(255, 91, 46, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff5b2e, #ff7a50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
}

.service-card p {
    color: #939db2;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #0b0b0f;
}

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

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
}

.about h4 {
    font-size: 1.3rem;
    color: #ff5b2e;
    margin-bottom: 30px;
    font-family: 'Roboto', sans-serif;
}

.about p {
    font-size: 1.1rem;
    color: #939db2;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Process Section */
.process {
    padding: 100px 0;
    background: #131419;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.process-step {
    background: #0b0b0f;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(147, 157, 178, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 91, 46, 0.2);
    border-color: rgba(255, 91, 46, 0.3);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff5b2e, #ff7a50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
}

.process-step p {
    font-style: italic;
    color: #ff5b2e;
    margin-bottom: 20px;
    font-size: 1rem;
}

.process-step ul {
    list-style: none;
    text-align: left;
    padding: 0;
}

.process-step ul li {
    padding: 5px 0;
    color: #939db2;
    position: relative;
    padding-left: 20px;
}

.process-step ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff5b2e;
    font-weight: bold;
}

/* Cases Section */
.cases {
    padding: 100px 0;
    background: #0b0b0f;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
}

.section-header p {
    font-size: 1.2rem;
    color: #939db2;
}

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

.case-item {
    background: #131419;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(147, 157, 178, 0.1);
    transition: all 0.3s ease;
}

.case-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 91, 46, 0.2);
    border-color: rgba(255, 91, 46, 0.3);
}

.case-image {
    height: 180px;
    overflow: hidden;
}

.case-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff5b2e, #ff7a50);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.case-placeholder i {
    font-size: 3rem;
    color: white;
}

.case-content {
    padding: 30px;
}

.case-content h4 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
}

.case-details p {
    margin-bottom: 10px;
    color: #939db2;
    line-height: 1.6;
}

.case-details strong {
    color: #ffffff;
}

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

/* Workshops Section */
.workshops {
    padding: 100px 0;
    background: #131419;
    text-align: center;
}

.workshops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.workshop-item {
    background: #0b0b0f;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(147, 157, 178, 0.1);
    transition: all 0.3s ease;
}

.workshop-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 91, 46, 0.2);
    border-color: rgba(255, 91, 46, 0.3);
}

.workshop-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff5b2e, #ff7a50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.workshop-icon i {
    font-size: 2rem;
    color: white;
}

.workshop-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
}

.workshop-item p {
    color: #939db2;
    line-height: 1.6;
}

.workshop-cta {
    margin-top: 40px;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #0b0b0f;
    text-align: center;
}

/* Testimonial Slider */
.testimonial-slider-container {
    position: relative;
    margin-top: 50px;
    padding-bottom: 60px;
}

.testimonial-slider {
    overflow: hidden;
    position: relative;
}

.testimonial-slide {
    width: 100%;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}

.testimonial-prev,
.testimonial-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #131419;
    border: 1px solid rgba(255, 91, 46, 0.3);
    color: #ff5b2e;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: #ff5b2e;
    color: #fff;
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #131419;
    border: 1px solid rgba(255, 91, 46, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: #ff5b2e;
    transform: scale(1.2);
}

.testimonial-item {
    background: #131419;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(147, 157, 178, 0.1);
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 91, 46, 0.2);
    border-color: rgba(255, 91, 46, 0.3);
}

.testimonial-item p {
    font-size: 1.1rem;
    color: #939db2;
    margin-bottom: 30px;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author h5 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 5px;
    font-family: 'Roboto', sans-serif;
}

.testimonial-author span {
    color: #ff5b2e;
    font-weight: 500;
}

/* Team Section */
.team {
    padding: 100px 0;
    background: #131419;
}

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

.team-image {
    display: flex;
    justify-content: center;
}

.team-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #ff5b2e, #ff7a50);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.team-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
}

.team-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
}

.team-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
}

.expertise-list {
    margin-bottom: 30px;
}

.expertise-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.expertise-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff5b2e, #ff7a50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.expertise-item span {
    color: #ffffff;
    font-weight: 500;
}

.team-text p {
    color: #939db2;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #0b0b0f;
}

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

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

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

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff5b2e, #ff7a50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
}

.contact-item p {
    color: #939db2;
}

.contact-info a {
    color: #ff5b2e;
}

/* Screen reader only labels */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* GDPR Banner Styles */
.gdpr-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(11, 11, 15, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(147, 157, 178, 0.2);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gdpr-banner.show {
    transform: translateY(0);
}

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

.gdpr-text h3 {
    color: #fff;
    margin: 0 0 8px 0;
    font-size: 1.1rem;
}

.gdpr-text p {
    color: #939db2;
    margin: 0;
    line-height: 1.4;
    font-size: 14px;
}

.gdpr-text a {
    color: #ff5b2e;
    text-decoration: underline;
}

.gdpr-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.gdpr-buttons .btn-primary,
.gdpr-buttons .btn-secondary {
    padding: 10px 20px;
    font-size: 14px;
    min-width: auto;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .gdpr-banner {
        padding: 15px;
    }
    
    .gdpr-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .gdpr-buttons {
        justify-content: center;
        gap: 10px;
    }
}

/* Form Message Styles */
.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
    display: block;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
    display: block;
}

.form-message.loading {
    background: rgba(255, 91, 46, 0.1);
    color: #ff5b2e;
    border: 1px solid rgba(255, 91, 46, 0.2);
    display: block;
}

.contact-form {
    background: #131419;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(147, 157, 178, 0.1);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(147, 157, 178, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
    background: #0b0b0f;
    color: #ffffff;
}

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

.form-group textarea {
    resize: vertical;
}

.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(147, 157, 178, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
    background: #0b0b0f;
    color: #ffffff;
}

.form-group select:focus {
    outline: none;
    border-color: #ff5b2e;
}

.checkbox-group {
    text-align: left;
}

.checkbox-group label {
    color: #939db2;
}

.checkbox-group label a {
    color: #ff5b2e;
}

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

/* Legal Pages Styles */
.legal-page {
    min-height: 100vh;
    background-color: #0b0b0f;
    padding: 80px 0 40px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(147, 157, 178, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(147, 157, 178, 0.1);
}

.legal-content h1 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.legal-content h2 {
    color: #ff5b2e;
    font-size: 1.5rem;
    margin: 30px 0 15px 0;
    border-bottom: 1px solid rgba(147, 157, 178, 0.2);
    padding-bottom: 10px;
}

.legal-content h3 {
    color: #fff;
    font-size: 1.2rem;
    margin: 20px 0 10px 0;
}

.legal-content p {
    color: #939db2;
    line-height: 1.6;
    margin-bottom: 15px;
}

.legal-content ul {
    color: #939db2;
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-page .legal-content a:not(.subpage a) {
    color: #ff5b2e;
    text-decoration: underline;
}

.legal-navigation {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(147, 157, 178, 0.2);
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Footer */
.footer {
    background: #131419;
    color: #939db2;
    padding: 25px 0 25px;
    border-top: 1px solid rgba(147, 157, 178, 0.1);
}

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

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ff5b2e;
    font-family: 'Roboto', sans-serif;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #939db2;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    color: #939db2;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.footer-links {
    margin: 15px 0;
}

.footer-links a {
    color: #ff5b2e;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #ff5b2e;
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(255, 91, 46, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #ffffff;
    color: #ff5b2e;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 91, 46, 0.4);
}

@media(max-width: 1100px){
    .nav-btn {
        display: none;
    }

    section#home {
        padding-top: 70px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 77px;
        flex-direction: column;
        background-color: rgba(11, 11, 15, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(147, 157, 178, 0.1);
        padding: 30px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }

    section#home {
        padding-top: 0px;
    }
    
    .hero h1 {
        text-align: center;
    }
    
    .hero p {
        font-size: 1rem;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .workshops-grid {
        grid-template-columns: 1fr;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .team-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .hero-stat .stat-number {
        font-size: 2rem;
    }
    
    .testimonial-slider {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }

    .legal-navigation.subpage {
        flex-direction: column;
        text-align: center;
    }
}

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

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
