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

:root {
    --primary: #2d5a4a;
    --secondary: #c4a35a;
    --dark: #1a1a1a;
    --light: #f8f6f1;
    --accent: #8b6914;
    --text: #333;
    --text-light: #666;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
}

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

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

.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-center {
    justify-content: center;
    align-items: center;
}

.flex-between {
    justify-content: space-between;
    align-items: center;
}

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

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

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

img {
    max-width: 100%;
    height: auto;
}

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

ul {
    list-style: none;
}

h1, h2, h3, h4, h5 {
    line-height: 1.3;
    font-weight: 600;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
}

p {
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--secondary);
    color: var(--dark);
}

.btn-primary:hover {
    background: var(--accent);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.1rem;
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--primary);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 15px 0;
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--secondary);
}

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

.nav-menu a {
    color: var(--text);
    font-weight: 500;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

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

.nav-cta {
    background: var(--secondary);
    color: var(--dark);
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--accent);
    color: var(--white);
}

.nav-cta::after {
    display: none;
}

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

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--dark);
    transition: all 0.3s ease;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
    padding-top: 80px;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 60px 0;
}

.hero-text {
    flex: 1;
}

.hero-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--dark);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-text h1 {
    color: var(--dark);
    margin-bottom: 25px;
}

.hero-text h1 span {
    color: var(--primary);
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 520px;
}

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

.hero-visual {
    flex: 1;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 500px;
    background: url('https://images.unsplash.com/photo-1555041469-a586c61ea9bc?w=800') center/cover;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.hero-floating-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.hero-floating-card .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.hero-floating-card .stat-text {
    color: var(--text-light);
    font-size: 0.9rem;
}

.problem-section {
    padding: 100px 0;
    background: var(--dark);
    color: var(--white);
}

.problem-intro {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.problem-intro h2 {
    margin-bottom: 20px;
}

.problem-intro p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
}

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

.problem-card {
    flex: 1;
    min-width: 280px;
    background: rgba(255,255,255,0.05);
    padding: 35px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

.problem-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.problem-card h3 {
    margin-bottom: 15px;
    color: var(--white);
}

.problem-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}

.story-section {
    padding: 120px 0;
    background: var(--white);
}

.story-wrapper {
    display: flex;
    gap: 80px;
    align-items: center;
}

.story-image {
    flex: 1;
    height: 550px;
    background: url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?w=800') center/cover;
    border-radius: 20px;
    position: relative;
}

.story-image::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--secondary);
    border-radius: 20px;
    z-index: -1;
}

.story-content {
    flex: 1;
}

.story-label {
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.story-content h2 {
    color: var(--dark);
    margin-bottom: 25px;
}

.story-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.story-features {
    margin-top: 30px;
}

.story-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.story-feature-icon {
    width: 28px;
    height: 28px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    font-size: 0.8rem;
}

.insight-section {
    padding: 100px 0;
    background: var(--light);
}

.insight-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.insight-header h2 {
    color: var(--dark);
    margin-bottom: 20px;
}

.insight-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.insight-card {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-8px);
}

.insight-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
}

.insight-card h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

.insight-card p {
    color: var(--text-light);
}

.trust-section {
    padding: 100px 0;
    background: var(--white);
}

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

.trust-header h2 {
    color: var(--dark);
    margin-bottom: 15px;
}

.trust-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

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

.trust-stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.trust-stat-text {
    color: var(--text-light);
    font-size: 0.95rem;
}

.trust-logos {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    opacity: 0.6;
}

.trust-logo {
    width: 120px;
    height: 50px;
    background: var(--light);
    border-radius: 8px;
}

.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

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

.testimonials-header h2 {
    color: var(--dark);
    margin-bottom: 15px;
}

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
}

.testimonial-quote {
    font-size: 4rem;
    color: var(--secondary);
    position: absolute;
    top: 20px;
    right: 30px;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 25px;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.2rem;
}

.testimonial-info h4 {
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: 3px;
}

.testimonial-info span {
    color: var(--text-light);
    font-size: 0.85rem;
}

.services-section {
    padding: 100px 0;
    background: var(--white);
}

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

.services-header h2 {
    color: var(--dark);
    margin-bottom: 15px;
}

.services-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: var(--light);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    color: var(--dark);
    margin-bottom: 12px;
}

.service-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
}

.benefits-section {
    padding: 100px 0;
    background: var(--primary);
    color: var(--white);
}

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

.benefits-header h2 {
    margin-bottom: 15px;
}

.benefits-header p {
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.benefit-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    display: flex;
    gap: 20px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
}

.benefit-content h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.benefit-content p {
    opacity: 0.8;
    font-size: 0.95rem;
}

.cta-section {
    padding: 100px 0;
    background: var(--dark);
    color: var(--white);
    text-align: center;
}

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

.cta-content h2 {
    margin-bottom: 20px;
}

.cta-content p {
    opacity: 0.8;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

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

.urgency-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--dark);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 30px;
    font-size: 0.9rem;
}

.form-section {
    padding: 100px 0;
    background: var(--light);
}

.form-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    color: var(--dark);
    margin-bottom: 20px;
}

.form-info p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.form-benefits {
    margin-top: 30px;
}

.form-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.form-benefit-icon {
    width: 24px;
    height: 24px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.7rem;
}

.form-container {
    flex: 1;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 18px;
    background: var(--secondary);
    color: var(--dark);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: var(--accent);
    color: var(--white);
}

footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
}

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

.footer-brand {
    flex: 2;
    min-width: 280px;
}

.footer-brand .logo {
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: block;
}

.footer-brand p {
    opacity: 0.7;
    max-width: 350px;
}

.footer-links {
    flex: 1;
    min-width: 150px;
}

.footer-links h4 {
    margin-bottom: 20px;
    color: var(--secondary);
    font-size: 1rem;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-links ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    opacity: 0.6;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    opacity: 0.6;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.footer-legal a:hover {
    opacity: 1;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: none;
}

.sticky-cta.visible {
    display: block;
}

.sticky-cta .btn {
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    padding: 16px 30px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

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

.cookie-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--secondary);
    color: var(--dark);
}

.cookie-reject {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

.page-header {
    padding: 140px 0 60px;
    background: var(--light);
    text-align: center;
}

.page-header h1 {
    color: var(--dark);
    margin-bottom: 15px;
}

.page-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    padding: 80px 0;
}

.about-mission {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-mission-image {
    flex: 1;
    height: 400px;
    background: url('https://images.unsplash.com/photo-1524758631624-e2822e304c36?w=800') center/cover;
    border-radius: 15px;
}

.about-mission-content {
    flex: 1;
}

.about-values {
    background: var(--light);
    padding: 80px 0;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

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

.service-row {
    display: flex;
    gap: 40px;
    align-items: center;
    padding: 40px;
    background: var(--light);
    border-radius: 15px;
}

.service-row:nth-child(even) {
    flex-direction: row-reverse;
}

.service-row-image {
    flex: 1;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

.service-row-content {
    flex: 1;
}

.service-row-content h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

.service-row-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-row-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

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

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 5px;
    color: var(--dark);
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

.contact-map {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background: var(--light);
    border-radius: 15px;
}

.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
}

.thanks-content {
    max-width: 600px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
    color: var(--white);
}

.thanks-content h1 {
    color: var(--dark);
    margin-bottom: 20px;
}

.thanks-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.legal-content {
    padding: 80px 0;
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--dark);
}

.legal-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--dark);
}

.legal-content p, .legal-content li {
    color: var(--text-light);
    line-height: 1.8;
}

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

.legal-content ul li {
    list-style: disc;
    margin-bottom: 10px;
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text p {
        margin: 0 auto 35px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        height: 400px;
    }

    .hero-floating-card {
        bottom: -20px;
        left: 20px;
    }

    .story-wrapper {
        flex-direction: column;
    }

    .story-image {
        height: 350px;
    }

    .form-wrapper {
        flex-direction: column;
    }

    .about-mission {
        flex-direction: column;
    }

    .service-row,
    .service-row:nth-child(even) {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        display: none;
    }

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

    .hamburger {
        display: flex;
    }

    .trust-stats {
        gap: 40px;
    }

    .trust-stat-number {
        font-size: 2.5rem;
    }

    .footer-grid {
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

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

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .form-container {
        padding: 30px;
    }

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