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

:root {
    --primary: #1a2b4c;
    --secondary: #3d5a80;
    --accent: #ee6c4d;
    --light: #f7f9fc;
    --dark: #0d1b2a;
    --text: #293241;
    --text-light: #5c677d;
    --white: #ffffff;
    --gradient-start: #1a2b4c;
    --gradient-end: #3d5a80;
}

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: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

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

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

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

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

h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

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

p {
    margin-bottom: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    gap: 8px;
}

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

.btn-primary:hover {
    background: #d45a3d;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(238, 108, 77, 0.3);
}

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

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

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo svg {
    width: 40px;
    height: 40px;
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-main a {
    color: var(--text);
    font-weight: 500;
    position: relative;
    padding: 4px 0;
}

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

.nav-main a:hover::after,
.nav-main a.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

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

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

.mobile-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    gap: 20px;
}

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

.mobile-nav a {
    font-size: 1.1rem;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.split-section {
    display: flex;
    min-height: 100vh;
}

.split-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
}

.split-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.split-right img,
.split-right svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section {
    padding-top: 72px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
}

.hero-section .split-left {
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title {
    margin-bottom: 24px;
}

.hero-text {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 500px;
}

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

.hero-visual {
    background: linear-gradient(45deg, #2a3f5f 0%, #4a6fa5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.hero-visual svg {
    max-width: 80%;
    max-height: 80%;
}

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

.intro-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-content {
    flex: 1;
}

.intro-visual {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.section-title {
    margin-bottom: 20px;
    color: var(--primary);
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.15rem;
    margin-bottom: 30px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.feature-text h4 {
    margin-bottom: 4px;
    color: var(--primary);
}

.feature-text p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

.services-section {
    padding: 100px 0;
}

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

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
}

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

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

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

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

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.service-features li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
}

.split-cta {
    background: var(--primary);
    padding: 80px 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-content {
    color: var(--white);
    flex: 1;
}

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

.cta-content p {
    opacity: 0.9;
    font-size: 1.1rem;
}

.cta-action {
    flex-shrink: 0;
}

.stats-section {
    padding: 80px 0;
    background: var(--light);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

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

.testimonials-section {
    padding: 100px 0;
}

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

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

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

.testimonial-card::before {
    content: '"';
    font-size: 6rem;
    color: var(--accent);
    opacity: 0.15;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

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

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h4 {
    margin-bottom: 2px;
    color: var(--primary);
}

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

.about-hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: var(--white);
    text-align: center;
}

.about-hero h1 {
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    padding: 100px 0;
}

.about-grid {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.about-text {
    flex: 1.2;
}

.about-sidebar {
    flex: 0.8;
    background: var(--light);
    border-radius: 16px;
    padding: 40px;
}

.about-text h2 {
    margin-bottom: 24px;
    color: var(--primary);
}

.about-text p {
    color: var(--text);
    font-size: 1.05rem;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.value-item {
    display: flex;
    gap: 16px;
}

.value-icon {
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.sidebar-title {
    font-size: 1.3rem;
    margin-bottom: 24px;
    color: var(--primary);
}

.sidebar-facts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fact-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    min-width: 80px;
}

.fact-text {
    color: var(--text);
    font-size: 0.95rem;
}

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

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

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

.team-card {
    flex: 0 0 280px;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.team-photo {
    height: 200px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo svg {
    width: 80px;
    height: 80px;
    fill: rgba(255, 255, 255, 0.3);
}

.team-info {
    padding: 24px;
    text-align: center;
}

.team-info h4 {
    margin-bottom: 4px;
    color: var(--primary);
}

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

.contact-section {
    padding: 160px 0 100px;
}

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

.contact-info {
    flex: 1;
}

.contact-form-wrapper {
    flex: 1.2;
    background: var(--white);
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-info h1 {
    color: var(--primary);
    margin-bottom: 20px;
}

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

.info-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: var(--light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--accent);
}

.info-text h4 {
    margin-bottom: 4px;
    color: var(--primary);
}

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

.form-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--primary);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: var(--white);
}

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

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

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 24px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
}

.thanks-content {
    text-align: center;
    color: var(--white);
    max-width: 600px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-icon svg {
    width: 50px;
    height: 50px;
    fill: var(--white);
}

.thanks-content h1 {
    margin-bottom: 20px;
}

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

.thanks-service {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.thanks-service h3 {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 8px;
}

.thanks-service p {
    font-size: 1.3rem;
    margin: 0;
    font-weight: 600;
}

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

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

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

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 320px;
}

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

.footer-links h4 {
    color: var(--white);
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-size: 0.9rem;
}

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

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 24px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
}

.cookie-banner.visible {
    transform: translateY(0);
}

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

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

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

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

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

.cookie-accept {
    background: var(--accent);
    color: var(--white);
}

.cookie-accept:hover {
    background: #d45a3d;
}

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

.cookie-reject:hover {
    border-color: var(--white);
}

.sticky-cta {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sticky-cta .btn {
    box-shadow: 0 8px 30px rgba(238, 108, 77, 0.4);
}

.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: var(--white);
}

.page-hero h1 {
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
}

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

.legal-content h2 {
    color: var(--primary);
    margin: 40px 0 16px;
    font-size: 1.5rem;
}

.legal-content h3 {
    color: var(--secondary);
    margin: 30px 0 12px;
    font-size: 1.2rem;
}

.legal-content p {
    color: var(--text);
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
    color: var(--text);
}

.legal-content a {
    color: var(--accent);
}

.legal-text {
    max-width: 800px;
}

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

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

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.process-step {
    display: flex;
    gap: 40px;
    padding: 40px 0;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 39px;
    top: 100px;
    bottom: -40px;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), transparent);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-content {
    flex: 1;
    padding-top: 16px;
}

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

.step-content p {
    color: var(--text-light);
    margin: 0;
}

@media (max-width: 1024px) {
    .split-section {
        flex-direction: column;
        min-height: auto;
    }

    .split-left {
        padding: 100px 40px 60px;
    }

    .split-right {
        min-height: 400px;
    }

    .intro-grid,
    .about-grid,
    .contact-grid {
        flex-direction: column;
        gap: 40px;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-main {
        display: none;
    }

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

    .hamburger {
        display: flex;
    }

    .split-left {
        padding: 100px 24px 50px;
    }

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

    .hero-buttons .btn {
        width: 100%;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .testimonial-card {
        flex: 1 1 100%;
    }

    .stats-grid {
        gap: 30px;
    }

    .stat-item {
        flex: 1 1 45%;
        min-width: 140px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .footer-grid {
        gap: 40px;
    }

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

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

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

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

    .cookie-btn {
        width: 100%;
    }

    .process-step {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .process-step::after {
        display: none;
    }

    .step-number {
        margin: 0 auto;
    }

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

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .container {
        padding: 0 16px;
    }

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

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