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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 2px solid #0066cc;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 20px;
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-text h3 {
    color: #0066cc;
    margin-bottom: 5px;
}

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

.cookie-buttons button {
    padding: 10px 20px;
    border: 2px solid #0066cc;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept-all {
    background: #0066cc;
    color: white;
}

.btn-accept-all:hover {
    background: #004d99;
}

.btn-necessary, .btn-custom {
    background: white;
    color: #0066cc;
}

.btn-necessary:hover, .btn-custom:hover {
    background: #e6f3ff;
}

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

.navbar {
    padding: 15px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #0066cc;
    font-weight: bold;
    font-size: 1.5rem;
    gap: 10px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

.nav-link:hover {
    color: #0066cc;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #0066cc;
    transition: width 0.3s ease;
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3rem;
    color: #0066cc;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.4;
}

.cta-button {
    display: inline-block;
    background: #0066cc;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.cta-button:hover {
    background: #004d99;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.cta-button.primary {
    background: #0066cc;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid #0066cc;
    color: #011830;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-button.secondary:hover {
    background: #0066cc;
    color: white;
}

/* Section Styling */
section {
    padding: 80px 0;
}

section:nth-child(even) {
    background: #f8fbff;
}

h2 {
    font-size: 2.5rem;
    color: #0066cc;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}

/* Services Overview */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.service-icon {
    margin-bottom: 20px;
}

.service-card h3 {
    color: #0066cc;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

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

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

.about-text h2 {
    text-align: left;
    margin-bottom: 30px;
}

.about-text p {
    margin-bottom: 20px;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
}

.link-button {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.link-button:hover {
    color: #004d99;
}

.link-button::after {
    content: '→';
    transition: transform 0.3s ease;
}

.link-button:hover::after {
    transform: translateX(5px);
}

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

/* Success Stories */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    background: white;
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    margin-bottom: 20px;
}

.stat-item h3 {
    color: #0066cc;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.stat-item p {
    color: #666;
    line-height: 1.6;
}

/* Team Preview */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-member {
    text-align: center;
    background: white;
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-avatar {
    margin-bottom: 20px;
}

.team-member h3 {
    color: #0066cc;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.team-member p {
    color: #666;
    line-height: 1.6;
}

.team-cta {
    text-align: center;
    margin-top: 40px;
}

/* Contact CTA */
.contact-cta {
    background: #6e9cca;
    color: rgb(18, 4, 141);
}

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

.cta-content h2 {
    color: rgb(5, 24, 136);
    margin-bottom: 20px;
}

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

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

/* Footer */
.footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 60px 0 20px;
}

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

.footer-section h3, .footer-section h4 {
    color: #fff;
    margin-bottom: 20px;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

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

.social-links a:hover {
    color: #0066cc;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #0066cc;
}

address {
    font-style: normal;
}

address a {
    color: #0066cc;
    text-decoration: none;
}

address a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text h2 {
        text-align: center;
    }
    
    .services-grid,
    .stats-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-nav {
        align-items: center;
    }
}

/* Page Header Styles */
.page-header {
    position: relative;
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
}

.page-header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.page-header-background svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.page-header-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

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

/* Active Navigation Link */
.nav-link.active {
    color: #0066cc;
}

.nav-link.active::after {
    width: 100%;
}

/* Service Detail Pages */
.service-detail {
    margin-bottom: 80px;
}

.service-detail:last-child {
    margin-bottom: 0;
}

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

.service-detail.reverse .service-content {
    grid-template-columns: 1fr 2fr;
}

.service-detail.reverse .service-text {
    order: 2;
}

.service-detail.reverse .service-visual {
    order: 1;
}

.service-detail h3 {
    color: #0066cc;
    font-size: 2rem;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #666;
}

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

.service-price {
    margin-top: 20px;
    padding: 15px;
    background: #f8fbff;
    border-radius: 8px;
    display: inline-block;
}

.price-label {
    color: #666;
    font-size: 0.9rem;
}

.price {
    color: #0066cc;
    font-size: 1.5rem;
    font-weight: bold;
    margin-left: 10px;
}

/* Process Steps */
.consultation-process {
    background: #f8fbff;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.process-step {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #0066cc;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 15px;
}

.process-step h3 {
    color: #0066cc;
    margin-bottom: 10px;
}

.process-arrow {
    display: flex;
    align-items: center;
}

/* Team Detail Pages */
.team-detailed {
    margin-top: 50px;
}

.team-member-detail {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 80px;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-member-detail.reverse {
    grid-template-columns: 1fr 300px;
}

.team-member-detail.reverse .member-photo {
    order: 2;
}

.team-member-detail.reverse .member-info {
    order: 1;
}

.member-info h3 {
    color: #0066cc;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.member-info h4 {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.member-bio {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.member-expertise,
.member-qualifications {
    margin-bottom: 20px;
}

.member-expertise h5,
.member-qualifications h5 {
    color: #0066cc;
    margin-bottom: 10px;
}

.member-expertise ul,
.member-qualifications ul {
    list-style: none;
    padding-left: 0;
}

.member-expertise li,
.member-qualifications li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 5px;
    color: #666;
}

.member-expertise li::before,
.member-qualifications li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
}

/* Team Philosophy */
.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.philosophy-text h2 {
    text-align: left;
    margin-bottom: 30px;
}

.philosophy-points {
    margin-top: 30px;
}

.philosophy-point {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.philosophy-point h4 {
    color: #0066cc;
    margin-bottom: 5px;
}

.philosophy-point p {
    color: #666;
    margin: 0;
}

/* Contact Form Styles */
.contact-form-section {
    padding: 80px 0;
}

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

.contact-info h2 {
    text-align: left;
    margin-bottom: 20px;
}

.contact-details {
    margin: 40px 0;
}

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

.contact-icon {
    flex-shrink: 0;
}

.contact-item h4 {
    color: #0066cc;
    margin-bottom: 5px;
}

.contact-item a {
    color: #0066cc;
    text-decoration: none;
}

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

.contact-item small {
    color: #999;
    font-size: 0.9rem;
}

.business-hours {
    margin-top: 40px;
}

.business-hours h4 {
    color: #0066cc;
    margin-bottom: 15px;
}

.hours-grid {
    display: grid;
    gap: 8px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.contact-form-container {
    background: #f8fbff;
    padding: 40px;
    border-radius: 15px;
}

.contact-form h3 {
    color: #0066cc;
    margin-bottom: 10px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.checkbox-group {
    margin-top: 20px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 3px;
    flex-shrink: 0;
    margin-top: 2px;
}

.submit-button {
    background: #0066cc;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.submit-button:hover {
    background: #004d99;
    transform: translateY(-1px);
}

/* Map Section */
.map-section {
    background: #f8fbff;
    padding: 80px 0;
}

.map-container {
    margin: 40px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.location-info {
    margin-top: 40px;
}

.location-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

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

.location-item h4 {
    color: #0066cc;
    margin-bottom: 10px;
}

/* Thanks Page Styles */
.thanks-section {
    padding: 100px 0;
    text-align: center;
}

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

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-content h1 {
    color: #0066cc;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.thanks-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 50px;
}

.next-steps {
    margin: 60px 0;
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
}

.step-item .step-number {
    width: 40px;
    height: 40px;
    background: #0066cc;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    margin: 0;
}

.step-content h3 {
    color: #0066cc;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-alternative {
    background: #f8fbff;
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
}

.contact-alternative h3 {
    color: #0066cc;
    margin-bottom: 15px;
}

.phone-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0066cc;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    margin: 15px 0 10px;
    transition: all 0.3s ease;
}

.phone-button:hover {
    background: #004d99;
    transform: translateY(-1px);
}

.back-actions {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.additional-info {
    background: #f8fbff;
    padding: 80px 0;
}

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

.info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-icon {
    margin-bottom: 20px;
}

.info-card h3 {
    color: #0066cc;
    margin-bottom: 15px;
}

.info-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Legal Pages */
.legal-header {
    background: #0066cc;
    color: white;
    padding: 100px 0 60px;
    text-align: center;
}

.legal-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.legal-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

.legal-content {
    padding: 80px 0;
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    color: #0066cc;
    font-size: 1.8rem;
    margin: 40px 0 20px;
    text-align: left;
}

.legal-text h3 {
    color: #0066cc;
    font-size: 1.4rem;
    margin: 30px 0 15px;
}

.legal-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.legal-text ul,
.legal-text ol {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    padding-left: 30px;
}

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

.contact-info {
    background: #f8fbff;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 4px solid #0066cc;
}

/* Cookie Table */
.cookie-table {
    margin: 20px 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.cookie-table th {
    background: #f8fbff;
    color: #0066cc;
    font-weight: 600;
}

.cookie-settings-button {
    text-align: center;
    margin: 30px 0;
}

/* Additional Services Grid */
.additional-services {
    background: #f8fbff;
}

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

.additional-service {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.additional-service:hover {
    transform: translateY(-5px);
}

.additional-icon {
    margin-bottom: 20px;
}

.additional-service h3 {
    color: #0066cc;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.additional-service p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .page-header-content h1 {
        font-size: 2rem;
    }
    
    .service-content,
    .team-member-detail,
    .philosophy-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .team-member-detail.reverse .member-photo,
    .team-member-detail.reverse .member-info {
        order: 0;
    }
    
    .service-detail.reverse .service-text,
    .service-detail.reverse .service-visual {
        order: 0;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 30px;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .location-details {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        text-align: center;
        flex-direction: column;
        align-items: center;
    }
    
    .legal-content {
        padding: 60px 20px;
    }
    
    .cookie-table {
        font-size: 0.9rem;
    }
    
    .additional-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .service-card,
    .stat-item,
    .team-member {
        padding: 30px 20px;
    }
    
    .page-header-content h1 {
        font-size: 1.8rem;
    }
    
    .team-member-detail {
        padding: 30px 20px;
    }
    
    .contact-form-container {
        padding: 25px 15px;
    }
    
    .thanks-content h1 {
        font-size: 2rem;
    }
    
    .legal-header h1 {
        font-size: 2rem;
    }
}