* {
    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: #1a1a1a;
    background-color: #ffffff;
}

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f766e;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #0f766e;
}

.ad-disclosure {
    font-size: 0.85rem;
    color: #6b7280;
    padding: 0.4rem 0.8rem;
    background-color: #f3f4f6;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f0fdfa;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: #0f766e;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.15rem;
    color: #374151;
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    background-color: #e0f2f1;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: #0f766e;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #115e59;
    cursor: pointer;
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #0f766e;
    padding: 0.9rem 2.3rem;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #0f766e;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #0f766e;
    color: #ffffff;
    cursor: pointer;
}

.value-section {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
}

.value-image {
    flex: 1;
    background-color: #f9fafb;
}

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

.value-content {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #ffffff;
}

.value-content h2 {
    font-size: 2.2rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.value-content p {
    font-size: 1.05rem;
    color: #4b5563;
    margin-bottom: 1.2rem;
}

.features-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    background-color: #f9fafb;
}

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

.features-content h2 {
    font-size: 2.2rem;
    color: #1f2937;
    margin-bottom: 2rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item h3 {
    font-size: 1.4rem;
    color: #0f766e;
    margin-bottom: 0.8rem;
}

.feature-item p {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 1rem;
}

.feature-price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
}

.features-image {
    flex: 1;
    background-color: #e5e7eb;
}

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

.process-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

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

.process-grid {
    display: flex;
    gap: 2rem;
}

.process-card {
    flex: 1;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.process-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #f3f4f6;
}

.process-card h3 {
    font-size: 1.3rem;
    color: #0f766e;
    padding: 1.5rem 1.5rem 0.5rem;
}

.process-card p {
    font-size: 1rem;
    color: #4b5563;
    padding: 0 1.5rem 1.5rem;
}

.form-section {
    background-color: #0f766e;
    padding: 5rem 2rem;
    margin: 5rem 0;
}

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

.form-container h2 {
    font-size: 2.2rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1rem;
}

.form-container > p {
    font-size: 1.1rem;
    color: #ccfbf1;
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
}

.service-selection {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.service-option:hover {
    border-color: #0f766e;
    background-color: #f0fdfa;
}

.service-option input[type="radio"] {
    margin-right: 1rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.service-option span {
    font-size: 1.05rem;
    color: #1f2937;
    font-weight: 500;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-fields input {
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-fields input:focus {
    outline: none;
    border-color: #0f766e;
}

.form-submit {
    background-color: #0f766e;
    color: #ffffff;
    padding: 1.1rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-submit:hover {
    background-color: #115e59;
}

.testimonials-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.testimonials-section h2 {
    font-size: 2.2rem;
    color: #1f2937;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-grid {
    display: flex;
    gap: 2rem;
}

.testimonial-card {
    flex: 1;
    background-color: #f0fdfa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #0f766e;
}

.testimonial-card p {
    font-size: 1.05rem;
    color: #374151;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: block;
    font-size: 0.95rem;
    color: #0f766e;
    font-weight: 600;
}

.additional-services {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
}

.services-content {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #f9fafb;
}

.services-content h2 {
    font-size: 2.2rem;
    color: #1f2937;
    margin-bottom: 2rem;
}

.service-detail-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-detail h3 {
    font-size: 1.3rem;
    color: #0f766e;
    margin-bottom: 0.8rem;
}

.service-detail p {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 0.8rem;
}

.service-detail-price {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
}

.services-visual {
    flex: 1;
    background-color: #e5e7eb;
}

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

.disclaimer-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
    background-color: #fef3c7;
    border-left: 4px solid #f59e0b;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #78350f;
    line-height: 1.7;
}

.main-footer {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 3rem 2rem 1.5rem;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-column a {
    display: block;
    color: #d1d5db;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #5eead4;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #9ca3af;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    padding: 1.5rem 2rem;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    display: none;
}

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

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

.cookie-content p {
    color: #d1d5db;
    flex: 1;
}

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

.cookie-accept, .cookie-reject {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background-color: #0f766e;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #115e59;
}

.cookie-reject {
    background-color: transparent;
    color: #d1d5db;
    border: 2px solid #6b7280;
}

.cookie-reject:hover {
    background-color: #374151;
}

.about-hero {
    background-color: #f0fdfa;
    padding: 5rem 2rem;
}

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

.about-hero-content h1 {
    font-size: 2.8rem;
    color: #0f766e;
    margin-bottom: 1.5rem;
}

.about-hero-content p {
    font-size: 1.2rem;
    color: #374151;
}

.mission-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
}

.mission-image {
    flex: 1;
    background-color: #f3f4f6;
}

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

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

.mission-content h2 {
    font-size: 2.2rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.mission-content p {
    font-size: 1.05rem;
    color: #4b5563;
    margin-bottom: 1.2rem;
}

.values-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1 1 calc(50% - 1rem);
    background-color: #ffffff;
    padding: 2rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.4rem;
    color: #0f766e;
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
}

.team-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    background-color: #f9fafb;
}

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

.team-content h2 {
    font-size: 2.2rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.team-content p {
    font-size: 1.05rem;
    color: #4b5563;
    margin-bottom: 1.2rem;
}

.team-image {
    flex: 1;
    background-color: #e5e7eb;
}

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

.stats-section {
    background-color: #0f766e;
    padding: 4rem 2rem;
    margin: 5rem 0;
}

.stats-section h2 {
    font-size: 2.2rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 2rem;
}

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

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #ccfbf1;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: #ffffff;
}

.approach-section {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
}

.approach-image {
    flex: 1;
    background-color: #f3f4f6;
}

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

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

.approach-content h2 {
    font-size: 2.2rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.approach-content p {
    font-size: 1.05rem;
    color: #4b5563;
    margin-bottom: 1.2rem;
}

.services-hero {
    background-color: #f0fdfa;
    padding: 5rem 2rem;
    text-align: center;
}

.services-hero h1 {
    font-size: 2.8rem;
    color: #0f766e;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.services-hero p {
    font-size: 1.2rem;
    color: #374151;
    max-width: 800px;
    margin: 0 auto;
}

.service-detail-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
}

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

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

.service-detail-content h2 {
    font-size: 2.2rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: #4b5563;
    margin-bottom: 1.2rem;
}

.service-pricing {
    background-color: #f0fdfa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #0f766e;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0.3rem;
}

.price-amount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #0f766e;
}

.service-features {
    list-style: none;
    margin-top: 2rem;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 1rem;
    color: #4b5563;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0f766e;
    font-weight: 700;
}

.service-detail-image {
    flex: 1;
    background-color: #f3f4f6;
}

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

.additional-services-section {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.additional-services-section h2 {
    font-size: 2.2rem;
    color: #1f2937;
    text-align: center;
    margin-bottom: 3rem;
}

.additional-services-grid {
    display: flex;
    gap: 2rem;
}

.additional-service-card {
    flex: 1;
    background-color: #ffffff;
    padding: 2rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.additional-service-card h3 {
    font-size: 1.4rem;
    color: #0f766e;
    margin-bottom: 1rem;
}

.additional-service-card p {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-card-pricing {
    background-color: #f9fafb;
    padding: 1rem;
    border-radius: 6px;
}

.card-price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.card-price-note {
    display: block;
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 0.3rem;
}

.services-cta-section {
    background-color: #0f766e;
    padding: 4rem 2rem;
    margin-top: 5rem;
}

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

.services-cta-content h2 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.services-cta-content p {
    font-size: 1.1rem;
    color: #ccfbf1;
    margin-bottom: 2rem;
}

.contact-hero {
    background-color: #f0fdfa;
    padding: 5rem 2rem;
    text-align: center;
}

.contact-hero h1 {
    font-size: 2.8rem;
    color: #0f766e;
    margin-bottom: 1.5rem;
}

.contact-hero p {
    font-size: 1.2rem;
    color: #374151;
}

.contact-content-section {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
}

.contact-info {
    flex: 1;
    padding: 4rem 3rem;
}

.contact-info h2 {
    font-size: 2.2rem;
    color: #1f2937;
    margin-bottom: 2rem;
}

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

.contact-detail h3 {
    font-size: 1.2rem;
    color: #0f766e;
    margin-bottom: 0.8rem;
}

.contact-detail p {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
    background-color: #f3f4f6;
}

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

.service-areas-section {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.service-areas-section h2 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.service-areas-section > p {
    font-size: 1.05rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.service-areas-grid {
    display: flex;
    gap: 3rem;
    margin-bottom: 1.5rem;
}

.area-column {
    flex: 1;
}

.area-column ul {
    list-style: none;
}

.area-column li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    color: #4b5563;
}

.area-column li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0f766e;
    font-weight: 700;
}

.service-note {
    font-size: 0.95rem;
    color: #6b7280;
    font-style: italic;
}

.contact-faq-section {
    max-width: 1000px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.contact-faq-section h2 {
    font-size: 2.2rem;
    color: #1f2937;
    margin-bottom: 2rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.2rem;
    color: #0f766e;
    margin-bottom: 0.8rem;
}

.faq-item p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
}

.thanks-hero {
    background-color: #f0fdfa;
    padding: 5rem 2rem;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 2.8rem;
    color: #0f766e;
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.2rem;
    color: #374151;
    margin-bottom: 1rem;
}

.thanks-details {
    margin-top: 2rem;
}

.selected-service {
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid #0f766e;
    margin-bottom: 1rem;
}

.thanks-next-steps {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.thanks-next-steps h2 {
    font-size: 2.2rem;
    color: #1f2937;
    text-align: center;
    margin-bottom: 3rem;
}

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

.step-card {
    flex: 1;
    background-color: #ffffff;
    padding: 2rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #0f766e;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    line-height: 50px;
    margin-bottom: 1.5rem;
}

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

.step-card p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
}

.thanks-resources {
    background-color: #f9fafb;
    padding: 4rem 2rem;
}

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

.resources-content h2 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.resources-content p {
    font-size: 1.05rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.resource-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.resource-link {
    display: inline-block;
    background-color: #ffffff;
    color: #0f766e;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #0f766e;
    border-radius: 6px;
    transition: all 0.3s;
}

.resource-link:hover {
    background-color: #0f766e;
    color: #ffffff;
}

.legal-content {
    max-width: 900px;
    margin: 3rem auto;
    padding: 2rem;
}

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

.legal-updated {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #0f766e;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: #1f2937;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

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

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

.legal-content li {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #0f766e;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #115e59;
}

@media (max-width: 768px) {
    .hero-split, .value-section, .features-split, .mission-split, .team-split, .additional-services, .approach-section, .service-detail-split, .contact-content-section {
        flex-direction: column;
    }

    .process-grid, .testimonial-grid, .stats-grid, .additional-services-grid, .next-steps-grid, .service-areas-grid {
        flex-direction: column;
    }

    .values-grid .value-card {
        flex: 1 1 100%;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

    .resource-links {
        flex-direction: column;
    }
}
