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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Ad Notice */
.ad-notice {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.875rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Navigation */
.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 2rem;
    z-index: 999;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.logo:hover {
    color: #3498db;
}

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

.nav-menu a {
    color: #2c3e50;
    font-weight: 500;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #3498db;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

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

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

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

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 90vh;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 4rem;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 90vh;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #5a6c7d;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    background-color: #dfe6e9;
    min-height: 90vh;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.cta-button-secondary {
    display: inline-block;
    background-color: transparent;
    color: #3498db;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: 2px solid #3498db;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Intro Split Section */
.intro-split {
    display: flex;
    align-items: center;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.intro-image {
    flex: 1;
    background-color: #dfe6e9;
    min-height: 600px;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-content {
    flex: 1;
    padding: 4rem;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.intro-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #5a6c7d;
}

/* Services Overview Section */
.services-overview {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.section-header p {
    font-size: 1.25rem;
    color: #5a6c7d;
}

/* Services Grid Split */
.services-grid-split {
    max-width: 1400px;
    margin: 0 auto;
}

.service-card-split {
    display: flex;
    margin-bottom: 3rem;
    background-color: #ffffff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-card-split:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.service-card-split.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    background-color: #dfe6e9;
    min-height: 400px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-details {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-details p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3498db;
    margin-top: auto;
}

/* Process Split Section */
.process-split {
    display: flex;
    background-color: #f8f9fa;
    align-items: center;
}

.process-content {
    flex: 1;
    padding: 4rem;
}

.process-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 700;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.process-step p {
    font-size: 1.125rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.process-image {
    flex: 1;
    background-color: #dfe6e9;
    min-height: 600px;
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    text-align: center;
    font-weight: 700;
}

.form-container > p {
    text-align: center;
    font-size: 1.125rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.project-form {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #dfe6e9;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

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

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
}

.submit-button {
    width: 100%;
    background-color: #3498db;
    color: #ffffff;
    padding: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.submit-button.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 3rem;
}

.cta-centered {
    text-align: center;
    padding: 5rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
}

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

.cta-centered p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #ecf0f1;
}

.cta-centered .cta-button {
    background-color: #ffffff;
    color: #2c3e50;
}

.cta-centered .cta-button:hover {
    background-color: #3498db;
    color: #ffffff;
}

/* Footer */
.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.footer-column p {
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-column a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 0.875rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: bottom 0.4s ease;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

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

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background-color: transparent;
    color: #ecf0f1;
    border: 2px solid #ecf0f1;
}

.cookie-btn.reject:hover {
    background-color: #ecf0f1;
    color: #2c3e50;
}

/* Page Hero Split */
.page-hero-split {
    display: flex;
    min-height: 60vh;
    align-items: center;
}

.hero-text {
    flex: 1;
    padding: 4rem;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 60vh;
}

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

.hero-text p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #5a6c7d;
}

.hero-visual {
    flex: 1;
    background-color: #dfe6e9;
    min-height: 60vh;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Story Split */
.story-split {
    display: flex;
    align-items: center;
}

.story-image {
    flex: 1;
    background-color: #dfe6e9;
    min-height: 600px;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    flex: 1;
    padding: 4rem;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.story-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #5a6c7d;
}

/* Values Split */
.values-split {
    display: flex;
    background-color: #f8f9fa;
    align-items: center;
}

.values-split.reverse {
    flex-direction: row-reverse;
}

.values-content {
    flex: 1;
    padding: 4rem;
}

.values-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 700;
}

.value-item {
    margin-bottom: 2rem;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.value-item p {
    font-size: 1.125rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.values-image {
    flex: 1;
    background-color: #dfe6e9;
    min-height: 600px;
}

.values-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Team Split */
.team-split {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.team-intro h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.team-intro p {
    font-size: 1.25rem;
    color: #5a6c7d;
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.team-member {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
    font-weight: 600;
}

.team-member p {
    font-size: 1.125rem;
    color: #5a6c7d;
    line-height: 1.7;
}

/* Approach Split */
.approach-split {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
}

.approach-image {
    flex: 1;
    background-color: #dfe6e9;
    min-height: 600px;
}

.approach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.approach-content {
    flex: 1;
    padding: 4rem;
}

.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.approach-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #5a6c7d;
}

/* Services Page */
.services-header {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.services-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 800;
}

.services-header p {
    font-size: 1.25rem;
    color: #5a6c7d;
}

.service-detail-split {
    display: flex;
    padding: 4rem 0;
    align-items: center;
}

.service-detail-split.reverse {
    flex-direction: row-reverse;
    background-color: #f8f9fa;
}

.service-detail-content {
    flex: 1;
    padding: 4rem;
}

.service-detail-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #5a6c7d;
}

.service-features {
    margin: 2rem 0;
}

.service-features h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.service-features ul {
    list-style: none;
}

.service-features li {
    font-size: 1.125rem;
    color: #5a6c7d;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.pricing-box {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    border-left: 4px solid #3498db;
}

.price-main {
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.875rem;
    color: #7f8c8d;
}

.service-detail-image {
    flex: 1;
    background-color: #dfe6e9;
    min-height: 600px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Page */
.contact-hero {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 800;
}

.contact-hero p {
    font-size: 1.25rem;
    color: #5a6c7d;
}

.contact-split {
    display: flex;
    padding: 4rem 2rem;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 700;
}

.contact-block {
    margin-bottom: 2rem;
}

.contact-block h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
    font-weight: 600;
}

.contact-block p {
    font-size: 1.125rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-note {
    font-size: 0.875rem;
    color: #7f8c8d;
    margin-top: 0.5rem;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.contact-extra {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.contact-extra h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.contact-extra p {
    font-size: 1.125rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.location-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

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

.location-section > p {
    text-align: center;
    font-size: 1.125rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.map-placeholder {
    max-width: 1400px;
    margin: 0 auto;
    height: 600px;
    background-color: #dfe6e9;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Thanks Page */
.thanks-section {
    display: flex;
    min-height: 70vh;
    align-items: center;
}

.thanks-content {
    flex: 1;
    padding: 4rem;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #27ae60;
    font-weight: 800;
}

.thanks-content > p {
    font-size: 1.25rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.service-confirmation {
    background-color: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 4px;
    border-left: 4px solid #27ae60;
    margin: 2rem 0;
}

.thanks-next {
    margin: 3rem 0;
}

.thanks-next h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 700;
}

.next-steps {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.step {
    flex: 1;
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #3498db;
    font-weight: 600;
}

.step p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.thanks-visual {
    flex: 1;
    background-color: #dfe6e9;
    min-height: 70vh;
}

.thanks-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Legal Pages */
.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 800;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
    font-weight: 600;
}

.legal-content h4 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.legal-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 1rem;
}

.legal-content ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content li {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #3498db;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #2980b9;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .process-split,
    .page-hero-split,
    .story-split,
    .values-split,
    .approach-split,
    .service-detail-split,
    .thanks-section {
        flex-direction: column;
    }

    .intro-split.reverse,
    .values-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .hero-content,
    .hero-text,
    .intro-content,
    .process-content,
    .story-content,
    .values-content,
    .approach-content,
    .service-detail-content,
    .thanks-content {
        padding: 3rem 2rem;
        min-height: auto;
    }

    .hero-image,
    .hero-visual,
    .intro-image,
    .process-image,
    .story-image,
    .values-image,
    .approach-image,
    .service-detail-image,
    .thanks-visual {
        min-height: 400px;
    }

    .service-card-split,
    .service-card-split.reverse {
        flex-direction: column;
    }

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

    .next-steps {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        padding: 1rem 2rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

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

    .section-header h2,
    .intro-content h2,
    .process-content h2,
    .story-content h2,
    .values-content h2,
    .approach-content h2,
    .service-detail-content h2,
    .contact-info h2 {
        font-size: 2rem;
    }

    .services-header h1,
    .contact-hero h1,
    .thanks-content h1,
    .legal-page h1 {
        font-size: 2.5rem;
    }

    .team-grid {
        flex-direction: column;
    }

    .team-member {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .project-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content,
    .hero-text,
    .intro-content,
    .process-content,
    .story-content,
    .values-content,
    .approach-content,
    .service-detail-content,
    .thanks-content {
        padding: 2rem 1.5rem;
    }

    .hero-content h1,
    .hero-text h1 {
        font-size: 2rem;
    }

    .services-overview,
    .team-split,
    .contact-form-section,
    .cta-centered {
        padding: 3rem 1.5rem;
    }
}