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

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

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

/* Navigation */
.navbar {
    background-color: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a56db;
    text-decoration: none;
}

.ad-label {
    font-size: 0.75rem;
    color: #6b7280;
    background-color: #f3f4f6;
    padding: 4px 12px;
    border-radius: 4px;
    margin: 0 20px;
}

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

.nav-menu a {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #1a56db;
}

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

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: #fff;
    color: #667eea;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    display: inline-block;
    background-color: #f3f4f6;
    color: #4b5563;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s;
    margin-left: 15px;
}

.btn-secondary:hover {
    background-color: #e5e7eb;
}

.btn-service {
    width: 100%;
    background-color: #1a56db;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-service:hover {
    background-color: #1e40af;
}

/* Card Layouts */
.intro-cards {
    padding: 80px 20px;
    background-color: #f9fafb;
}

.card-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

.card-body {
    padding: 25px;
}

.card-body h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #1f2937;
}

.card-body p {
    color: #6b7280;
    line-height: 1.7;
}

/* Services Section */
.services-section {
    padding: 80px 20px;
    background-color: #fff;
}

.services-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1f2937;
}

.section-intro {
    text-align: center;
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px;
    position: relative;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    border-color: #1a56db;
    box-shadow: 0 8px 16px rgba(26, 86, 219, 0.15);
}

.service-card.featured {
    border-color: #1a56db;
    background: linear-gradient(to bottom, #f0f4ff 0%, #fff 100%);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #10b981;
    color: #fff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.service-header h3 {
    font-size: 1.5rem;
    color: #1f2937;
    flex: 1;
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a56db;
}

.feature-list {
    list-style: none;
    margin-bottom: 25px;
}

.feature-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #4b5563;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

/* Form Section */
.form-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0e7ff 100%);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #1f2937;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.btn-submit {
    background-color: #1a56db;
    color: #fff;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-submit:hover {
    background-color: #1e40af;
}

/* Info Section */
.info-section {
    padding: 80px 20px;
    background-color: #fff;
}

.info-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px;
    background-color: #f9fafb;
    border-radius: 12px;
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #1f2937;
}

.info-card p {
    color: #6b7280;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 60px 20px 20px;
}

.footer-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

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

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

.footer-col a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #374151;
}

.disclaimer {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-accept {
    background-color: #10b981;
    color: #fff;
}

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

.btn-reject {
    background-color: #6b7280;
    color: #fff;
}

.btn-reject:hover {
    background-color: #4b5563;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

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

/* Services Detail Page */
.services-detail {
    padding: 60px 20px;
    background-color: #f9fafb;
}

.services-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-detailed-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.service-detailed-card.highlight {
    border: 3px solid #1a56db;
}

.service-image-wrap {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

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

.service-detailed-content {
    padding: 40px;
    position: relative;
}

.service-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.service-title-row h2 {
    font-size: 2rem;
    color: #1f2937;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a56db;
}

.popular-badge {
    background-color: #10b981;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.service-description {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-detailed-content h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #1f2937;
}

.detailed-features {
    list-style: none;
    margin-bottom: 25px;
}

.detailed-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #4b5563;
    font-size: 1.05rem;
}

.detailed-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 1.2rem;
}

.service-notes {
    background-color: #eff6ff;
    padding: 20px;
    border-radius: 8px;
    margin-top: 25px;
    margin-bottom: 25px;
    border-left: 4px solid #1a56db;
}

.service-notes strong {
    color: #1a56db;
}

/* About Page */
.about-content {
    padding: 60px 20px;
    background-color: #fff;
}

.about-intro-card {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1f2937;
}

.about-text p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.about-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

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

.values-section {
    margin-bottom: 80px;
}

.values-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    color: #1f2937;
}

.values-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: #f9fafb;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #1a56db;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #1f2937;
}

.value-card p {
    color: #6b7280;
    line-height: 1.7;
}

.team-section {
    margin-bottom: 80px;
}

.team-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    text-align: center;
    color: #1f2937;
}

.team-intro {
    text-align: center;
    color: #6b7280;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.team-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.member-photo {
    width: 100%;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #1f2937;
}

.role {
    color: #1a56db;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-member p {
    color: #6b7280;
    line-height: 1.7;
}

.process-section {
    margin-bottom: 80px;
}

.process-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    color: #1f2937;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #1f2937;
}

.step-content p {
    color: #6b7280;
    line-height: 1.7;
}

.stats-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    color: #1f2937;
}

.stats-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.stat-card {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 12px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Contact Page */
.contact-section {
    padding: 60px 20px;
    background-color: #fff;
}

.contact-layout {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.contact-info-block,
.contact-map-block {
    flex: 1;
    min-width: 300px;
}

.contact-info-block h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1f2937;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.info-icon {
    font-size: 1.5rem;
}

.info-divider {
    height: 1px;
    background-color: #e5e7eb;
    margin: 30px 0;
}

.email-static {
    color: #1f2937;
    font-weight: 600;
}

.small-text {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 5px;
}

.margin-top {
    margin-top: 15px;
}

.contact-note {
    background-color: #eff6ff;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #1a56db;
    margin-top: 30px;
}

.contact-note h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #1a56db;
}

.contact-note p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 10px;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}

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

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px 20px;
    border-radius: 8px;
}

.map-overlay p {
    margin: 0;
    font-weight: 600;
    color: #1f2937;
}

.map-overlay .small {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 400;
}

.location-details h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #1f2937;
}

.transport-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.transport-item strong {
    display: block;
    margin-bottom: 8px;
    color: #1f2937;
}

.transport-item p {
    color: #6b7280;
    line-height: 1.7;
}

.faq-section {
    margin-top: 60px;
}

.faq-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    color: #1f2937;
}

.faq-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.faq-item {
    flex: 1;
    min-width: 300px;
    background-color: #f9fafb;
    padding: 25px;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #1f2937;
}

.faq-item p {
    color: #6b7280;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    color: #fff;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

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

/* Thanks Page */
.thanks-section {
    padding: 80px 20px;
    background-color: #f9fafb;
    min-height: 70vh;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #10b981;
    color: #fff;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1f2937;
}

.thanks-message {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 50px;
}

.thanks-details {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    text-align: left;
}

.thanks-details h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    color: #1f2937;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.step-num {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #1f2937;
}

.step-text p {
    color: #6b7280;
    line-height: 1.7;
}

.service-selected {
    background-color: #eff6ff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #1a56db;
}

.service-selected h3 {
    font-size: 1.2rem;
    color: #1a56db;
    margin-bottom: 10px;
}

.selected-service {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
}

.thanks-info {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    text-align: left;
}

.thanks-info h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #1f2937;
}

.info-list {
    list-style: none;
}

.info-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #4b5563;
    line-height: 1.7;
}

.info-list li::before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #1a56db;
    font-weight: 700;
    font-size: 1.5rem;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.thanks-contact {
    background-color: #f9fafb;
    padding: 25px;
    border-radius: 8px;
}

.thanks-contact p {
    margin-bottom: 8px;
    color: #4b5563;
}

/* Legal Pages */
.legal-content {
    padding: 60px 20px;
    background-color: #fff;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1f2937;
}

.legal-text h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #374151;
}

.legal-text p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-text ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-text ul li {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 8px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

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

.cookie-table th {
    background-color: #f9fafb;
    font-weight: 600;
    color: #1f2937;
}

.cookie-table td {
    color: #4b5563;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        margin-top: 20px;
    }

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

    .nav-menu li {
        padding: 10px 0;
        border-bottom: 1px solid #e5e7eb;
    }

    .ad-label {
        order: -1;
        margin: 10px 0;
    }

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

    .hero-content p {
        font-size: 1rem;
    }

    .card-grid,
    .services-grid,
    .info-grid,
    .values-grid,
    .team-grid,
    .stats-grid,
    .faq-grid {
        flex-direction: column;
    }

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

    .form-wrapper {
        padding: 30px 20px;
    }

    .about-intro-card {
        flex-direction: column;
    }

    .contact-layout {
        flex-direction: column;
    }

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

    .btn-secondary {
        margin-left: 0;
        margin-top: 10px;
    }
}