:root {
    --color-primary: #2c3e50;
    --color-secondary: #e67e22;
    --color-accent: #c0392b;
    --color-light: #ecf0f1;
    --color-dark: #1a252f;
    --color-text: #34495e;
    --color-text-light: #7f8c8d;
    --color-white: #ffffff;
    --color-border: #bdc3c7;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
}

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

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: var(--transition);
}

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

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

h1, h2, h3, h4 {
    color: var(--color-primary);
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2rem;
    font-weight: 700;
}

h2 {
    font-size: 1.75rem;
    font-weight: 600;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

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

.nav-list {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-link {
    display: block;
    padding: 10px 15px;
    color: var(--color-text);
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-secondary);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

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

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

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

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

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

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

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

.btn-small {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-full {
    width: 100%;
}

.label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.label.light {
    color: var(--color-secondary);
}

main {
    padding-top: 70px;
}

.hero {
    min-height: calc(100vh - 70px);
}

.split-section {
    display: flex;
    flex-direction: column;
}

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

.split-content h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.split-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.split-content p {
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.split-image {
    min-height: 300px;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.feature-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--color-secondary);
    border-radius: 50%;
}

.intro-section {
    background: var(--color-light);
    padding: 50px 20px;
}

.intro-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.intro-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-secondary);
}

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

.services-preview {
    padding: 80px 20px;
    background: var(--color-white);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

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

.service-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 30px;
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
}

.service-card.featured {
    border-color: var(--color-secondary);
    border-width: 2px;
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

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

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--color-secondary);
}

.service-card h3 {
    margin-bottom: 10px;
}

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

.service-card .price {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.card-link {
    font-weight: 600;
    color: var(--color-secondary);
}

.card-link:hover {
    color: var(--color-accent);
}

.cta-banner {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    padding: 60px 20px;
    text-align: center;
}

.cta-banner.alt {
    background: var(--color-light);
}

.cta-banner.alt h2,
.cta-banner.alt p {
    color: var(--color-primary);
}

.cta-content h2 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.split-section.dark {
    background: var(--color-dark);
}

.split-section.dark .split-content {
    color: var(--color-white);
}

.split-section.dark h2 {
    color: var(--color-white);
}

.split-section.dark p {
    color: rgba(255, 255, 255, 0.85);
}

.testimonials {
    padding: 80px 20px;
    background: var(--color-light);
}

.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-card {
    background: var(--color-white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-soft);
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 20px;
}

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

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    color: var(--color-primary);
}

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

.gallery-section {
    padding: 80px 20px;
}

.gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 250px;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--color-white);
}

.gallery-overlay span {
    font-weight: 500;
}

.form-section {
    padding: 80px 20px;
    background: var(--color-light);
}

.form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    background: var(--color-white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-medium);
}

.form-info h2 {
    margin-bottom: 1rem;
}

.form-benefits {
    list-style: none;
    padding: 0;
}

.form-benefits li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    color: var(--color-text);
}

.form-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: bold;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-main);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

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

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

.footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 60px 20px 30px;
}

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

.footer-col h4 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-col a:hover {
    color: var(--color-secondary);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

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

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.cookie-content a {
    color: var(--color-secondary);
}

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

.page-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    padding: 80px 20px 60px;
    text-align: center;
}

.page-hero h1 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.values-section {
    padding: 80px 20px;
}

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

.value-card {
    padding: 30px;
    border-left: 4px solid var(--color-secondary);
    background: var(--color-light);
}

.value-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.value-card h3 {
    margin-bottom: 10px;
}

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

.team-section {
    padding: 80px 20px;
    background: var(--color-light);
}

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

.team-card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.team-image {
    height: 280px;
    overflow: hidden;
}

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

.team-card h3 {
    padding: 20px 20px 5px;
    margin: 0;
}

.team-role {
    display: block;
    padding: 0 20px;
    color: var(--color-secondary);
    font-weight: 500;
    margin-bottom: 10px;
}

.team-card p {
    padding: 0 20px 20px;
    color: var(--color-text-light);
    margin: 0;
}

.timeline-section {
    padding: 80px 20px;
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-border);
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -40px;
    width: 32px;
    height: 32px;
    background: var(--color-secondary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.timeline-content h3 {
    margin-bottom: 8px;
}

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

.services-detail {
    padding: 60px 20px;
}

.service-detail-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
}

.service-detail-card.featured {
    border-color: var(--color-secondary);
    border-width: 2px;
}

.service-detail-content {
    padding: 30px;
}

.service-detail-content h2 {
    margin-bottom: 15px;
}

.service-includes {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.service-includes li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: bold;
}

.service-detail-price {
    padding: 30px;
    background: var(--color-light);
}

.price-box {
    text-align: center;
    margin-bottom: 20px;
}

.price-box.highlight {
    background: var(--color-white);
    padding: 20px;
    border-radius: 12px;
}

.price-label {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 5px;
}

.price-amount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.price-note {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-top: 5px;
}

.pricing-note {
    padding: 0 20px 60px;
}

.note-box {
    background: var(--color-light);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--color-secondary);
}

.note-box h3 {
    margin-bottom: 15px;
}

.note-box p {
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.note-box p:last-child {
    margin-bottom: 0;
}

.material-list {
    list-style: none;
    padding: 0;
}

.material-list li {
    margin-bottom: 10px;
}

.faq-section {
    padding: 80px 20px;
    background: var(--color-light);
}

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

.faq-item {
    background: var(--color-white);
    padding: 25px;
    border-radius: 12px;
}

.faq-item h3 {
    margin-bottom: 10px;
    color: var(--color-primary);
}

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

.contact-section {
    padding: 60px 20px;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card {
    background: var(--color-light);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.contact-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--color-secondary);
}

.contact-info-card h3 {
    margin-bottom: 15px;
}

.contact-info-card p {
    margin-bottom: 5px;
    color: var(--color-text);
}

.contact-note {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.directions {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--color-border);
}

.directions h4 {
    margin-bottom: 15px;
    color: var(--color-primary);
}

.directions p {
    margin-bottom: 8px;
}

.map-section {
    padding: 0 20px 60px;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.company-info {
    padding: 0 20px 60px;
}

.company-box {
    background: var(--color-light);
    padding: 30px;
    border-radius: 12px;
}

.company-box h3 {
    margin-bottom: 20px;
}

.company-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.company-details p {
    margin-bottom: 5px;
}

.thanks-section {
    padding: 100px 20px;
    text-align: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
}

.thanks-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--color-secondary);
    stroke-width: 1.5;
}

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

.thanks-service {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.thanks-next {
    background: var(--color-light);
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
    text-align: left;
}

.thanks-next h3 {
    margin-bottom: 15px;
}

.thanks-next ol {
    margin: 0;
    padding-left: 20px;
}

.thanks-next li {
    margin-bottom: 8px;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.thanks-extra {
    padding: 0 20px 80px;
}

.extra-content h2 {
    text-align: center;
    margin-bottom: 30px;
}

.extra-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.extra-card {
    display: block;
    background: var(--color-light);
    padding: 25px;
    border-radius: 12px;
    transition: var(--transition);
}

.extra-card:hover {
    background: var(--color-white);
    box-shadow: var(--shadow-medium);
}

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

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

.legal-hero {
    background: var(--color-primary);
    padding: 80px 20px 50px;
}

.legal-hero h1 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.legal-hero p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.legal-content {
    padding: 60px 20px;
}

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

.legal-text h2 {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

.legal-text h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-text h3 {
    margin-top: 1.5rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.9rem;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.cookie-table th {
    background: var(--color-light);
    font-weight: 600;
}

@media (min-width: 640px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .intro-grid {
        flex-direction: row;
        justify-content: space-around;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 15px);
    }

    .testimonial-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial-card {
        flex: 1 1 calc(50% - 15px);
    }

    .gallery-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .gallery-item {
        flex: 1 1 calc(50% - 10px);
    }

    .gallery-item.large {
        flex: 1 1 100%;
    }

    .footer-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1 1 calc(50% - 20px);
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1 1 calc(50% - 15px);
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-card {
        flex: 1 1 calc(50% - 15px);
    }

    .contact-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-info-card {
        flex: 1 1 calc(50% - 15px);
    }

    .company-details {
        flex-direction: row;
        justify-content: space-between;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }

    .extra-grid {
        flex-direction: row;
    }

    .extra-card {
        flex: 1;
    }
}

@media (min-width: 768px) {
    .nav-list {
        display: flex;
        gap: 10px;
    }

    .nav-toggle {
        display: none;
    }

    .split-section {
        flex-direction: row;
        min-height: 600px;
    }

    .split-section.reverse {
        flex-direction: row-reverse;
    }

    .split-content {
        flex: 1;
        padding: 60px 50px;
    }

    .split-content h1 {
        font-size: 2.75rem;
    }

    .split-image {
        flex: 1;
        min-height: auto;
    }

    .split-image img {
        min-height: 100%;
    }

    .sticky-cta {
        display: block;
    }

    .service-detail-card {
        display: flex;
    }

    .service-detail-content {
        flex: 2;
    }

    .service-detail-price {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        flex-wrap: nowrap;
    }

    .service-card {
        flex: 1;
    }

    .testimonial-grid {
        flex-wrap: nowrap;
    }

    .testimonial-card {
        flex: 1;
    }

    .footer-grid {
        flex-wrap: nowrap;
    }

    .footer-col {
        flex: 1;
    }

    .values-grid {
        flex-wrap: nowrap;
    }

    .value-card {
        flex: 1;
    }

    .team-grid {
        flex-wrap: nowrap;
    }

    .team-card {
        flex: 1;
    }

    .contact-grid {
        flex-wrap: nowrap;
    }

    .contact-info-card {
        flex: 1;
    }

    .form-wrapper {
        flex-direction: row;
        padding: 50px;
    }

    .form-info {
        flex: 1;
    }

    .contact-form {
        flex: 1;
    }
}

@media (min-width: 1200px) {
    .split-content {
        padding: 80px 80px;
    }

    .split-content h1 {
        font-size: 3rem;
    }
}
