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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fafaf8;
}

.ad-notice {
    background-color: #f0ebe6;
    color: #5a5a5a;
    text-align: center;
    padding: 8px 15px;
    font-size: 12px;
    border-bottom: 1px solid #d8d0c8;
}

.header-minimal {
    background-color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 22px;
    font-weight: 600;
    color: #2c2c2c;
    letter-spacing: -0.5px;
}

.nav-floating {
    display: flex;
    gap: 35px;
}

.nav-floating a {
    color: #5a5a5a;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
}

.nav-floating a:hover {
    color: #2c2c2c;
}

.hero-cards {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

.hero-card-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-text-block {
    background-color: #ffffff;
    padding: 60px 50px;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.hero-text-block h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.hero-text-block p {
    font-size: 19px;
    color: #5a5a5a;
    line-height: 1.7;
    max-width: 700px;
}

.hero-image-card {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 6px 30px rgba(0,0,0,0.08);
}

.hero-image-card img {
    width: 100%;
    height: auto;
    display: block;
}

.intro-card-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.card-container {
    display: flex;
    justify-content: center;
}

.intro-card {
    background-color: #ffffff;
    padding: 50px 60px;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    max-width: 900px;
}

.intro-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.intro-card p {
    font-size: 17px;
    color: #5a5a5a;
    line-height: 1.8;
}

.courses-grid {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.section-header-offset {
    margin-bottom: 50px;
    padding-left: 20px;
}

.section-header-offset h2 {
    font-size: 38px;
    margin-bottom: 12px;
    font-weight: 700;
    color: #1a1a1a;
}

.section-header-offset p {
    font-size: 18px;
    color: #6a6a6a;
}

.cards-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.course-card {
    display: flex;
    flex-direction: row;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}

.course-image {
    flex: 0 0 40%;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.course-content {
    flex: 1;
    padding: 35px 40px;
    display: flex;
    flex-direction: column;
}

.course-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

.course-content p {
    font-size: 16px;
    color: #5a5a5a;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.course-details {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.course-details span {
    font-size: 14px;
    color: #7a7a7a;
    background-color: rgba(0,0,0,0.04);
    padding: 6px 14px;
    border-radius: 4px;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.select-course-btn {
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    align-self: flex-start;
}

.select-course-btn:hover {
    background-color: #1a1a1a;
}

.select-course-btn.selected {
    background-color: #4a7c59;
}

.form-section-card {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.form-card-wrapper {
    background-color: #ffffff;
    padding: 50px 60px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    max-width: 800px;
    margin: 0 auto;
}

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

.form-intro h2 {
    font-size: 32px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 16px;
    color: #6a6a6a;
}

.enrollment-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #3a3a3a;
    margin-bottom: 8px;
}

.form-group input {
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid #d8d8d8;
    border-radius: 5px;
    background-color: #fafafa;
    transition: border-color 0.2s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #2c2c2c;
    background-color: #ffffff;
}

.form-group input[readonly] {
    background-color: #f0f0f0;
    cursor: not-allowed;
}

.submit-btn {
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: 10px;
}

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

.why-choose-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.why-card-layout {
    display: flex;
    gap: 40px;
    align-items: center;
}

.why-image-block {
    flex: 0 0 45%;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.why-image-block img {
    width: 100%;
    height: auto;
    display: block;
}

.why-content-block {
    flex: 1;
    background-color: #ffffff;
    padding: 45px 50px;
    border-radius: 6px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

.why-content-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.why-content-block p {
    font-size: 16px;
    color: #5a5a5a;
    line-height: 1.7;
    margin-bottom: 25px;
}

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

.benefits-list li {
    font-size: 15px;
    color: #5a5a5a;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a7c59;
    font-weight: bold;
}

.testimonial-cards {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.testimonial-cards h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 600;
    color: #1a1a1a;
}

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

.testimonial-card {
    flex: 1;
    background-color: #ffffff;
    padding: 35px 40px;
    border-radius: 6px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

.testimonial-text {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #7a7a7a;
    font-weight: 500;
}

.footer-modern {
    background-color: #2c2c2c;
    color: #d8d8d8;
    margin-top: 120px;
    padding: 60px 0 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h4 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 600;
}

.footer-column p,
.footer-column a {
    font-size: 14px;
    color: #b8b8b8;
    text-decoration: none;
    line-height: 1.8;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 40px;
    border-top: 1px solid #444444;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 12px;
    color: #a8a8a8;
    line-height: 1.6;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #a8a8a8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 25px 40px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-content {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.cookie-content p {
    font-size: 14px;
    color: #4a4a4a;
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #2c2c2c;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.cookie-accept {
    background-color: #2c2c2c;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #1a1a1a;
}

.cookie-reject {
    background-color: #e8e8e8;
    color: #2c2c2c;
}

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

.about-hero-card {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

.about-card-content {
    background-color: #ffffff;
    padding: 80px 60px;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    text-align: center;
}

.about-card-content h1 {
    font-size: 52px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #1a1a1a;
}

.about-card-content p {
    font-size: 20px;
    color: #6a6a6a;
}

.story-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.story-layout {
    display: flex;
    gap: 50px;
    align-items: center;
}

.story-text-wide {
    flex: 1;
    background-color: #ffffff;
    padding: 45px 50px;
    border-radius: 6px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

.story-text-wide h2 {
    font-size: 34px;
    margin-bottom: 25px;
    font-weight: 600;
    color: #1a1a1a;
}

.story-text-wide p {
    font-size: 16px;
    color: #5a5a5a;
    line-height: 1.8;
    margin-bottom: 18px;
}

.story-image-offset {
    flex: 0 0 40%;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.story-image-offset img {
    width: 100%;
    height: auto;
    display: block;
}

.philosophy-cards {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.philosophy-cards h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
    color: #1a1a1a;
}

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

.philosophy-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px 35px;
    border-radius: 6px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

.philosophy-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

.philosophy-card p {
    font-size: 15px;
    color: #5a5a5a;
    line-height: 1.7;
}

.approach-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.approach-layout {
    display: flex;
    gap: 45px;
    align-items: center;
}

.approach-image {
    flex: 0 0 42%;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.approach-image img {
    width: 100%;
    height: auto;
    display: block;
}

.approach-content {
    flex: 1;
    background-color: #ffffff;
    padding: 45px 50px;
    border-radius: 6px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

.approach-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.approach-content p {
    font-size: 16px;
    color: #5a5a5a;
    line-height: 1.8;
    margin-bottom: 18px;
}

.values-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.values-section h2 {
    font-size: 38px;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
    color: #1a1a1a;
}

.values-stacked {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.value-block {
    background-color: #ffffff;
    padding: 35px 45px;
    border-radius: 6px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

.value-block h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #1a1a1a;
}

.value-block p {
    font-size: 15px;
    color: #5a5a5a;
    line-height: 1.7;
}

.services-hero {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
    text-align: center;
}

.services-hero h1 {
    font-size: 50px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #1a1a1a;
}

.services-hero p {
    font-size: 19px;
    color: #6a6a6a;
}

.services-detailed {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card-detailed {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.service-header {
    background-color: #f8f6f4;
    padding: 35px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-header h2 {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
}

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: #2c2c2c;
}

.service-body {
    padding: 35px 40px;
}

.service-description h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

.service-description p {
    font-size: 16px;
    color: #5a5a5a;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-description ul {
    list-style: none;
    padding: 0;
}

.service-description ul li {
    font-size: 15px;
    color: #5a5a5a;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.service-description ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4a7c59;
    font-weight: bold;
    font-size: 18px;
}

.service-meta {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #e8e8e8;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.meta-item {
    font-size: 14px;
    color: #6a6a6a;
}

.meta-item strong {
    color: #2c2c2c;
}

.cta-services {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.cta-card-centered {
    background-color: #ffffff;
    padding: 60px 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-card-centered h2 {
    font-size: 34px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

.cta-card-centered p {
    font-size: 16px;
    color: #6a6a6a;
    margin-bottom: 30px;
}

.cta-button-link {
    display: inline-block;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.2s ease;
}

.cta-button-link:hover {
    background-color: #1a1a1a;
}

.contact-hero {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 50px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #1a1a1a;
}

.contact-hero p {
    font-size: 19px;
    color: #6a6a6a;
}

.contact-main-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.contact-layout {
    display: flex;
    gap: 40px;
}

.contact-info-card {
    flex: 1;
    background-color: #ffffff;
    padding: 45px 50px;
    border-radius: 6px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

.contact-info-card h2 {
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 600;
    color: #1a1a1a;
}

.contact-detail-block {
    margin-bottom: 30px;
}

.contact-detail-block h3 {
    font-size: 16px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 8px;
}

.contact-detail-block p {
    font-size: 15px;
    color: #5a5a5a;
    line-height: 1.7;
}

.contact-additional-card {
    flex: 1;
    background-color: #ffffff;
    padding: 45px 50px;
    border-radius: 6px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

.contact-additional-card h2 {
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 600;
    color: #1a1a1a;
}

.faq-item {
    margin-bottom: 25px;
}

.faq-item h3 {
    font-size: 17px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 8px;
}

.faq-item p {
    font-size: 15px;
    color: #5a5a5a;
    line-height: 1.7;
}

.contact-cta-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.thanks-hero {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.thanks-card {
    background-color: #ffffff;
    padding: 80px 60px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.success-icon {
    font-size: 64px;
    color: #4a7c59;
    margin-bottom: 20px;
}

.thanks-card h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 18px;
    color: #6a6a6a;
    margin-bottom: 30px;
}

.confirmation-details {
    background-color: #f8f6f4;
    padding: 25px 30px;
    border-radius: 6px;
    margin-top: 30px;
}

.confirmation-details p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

.next-steps-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.next-steps-card {
    background-color: #ffffff;
    padding: 50px 60px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    max-width: 900px;
    margin: 0 auto;
}

.next-steps-card h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 600;
    color: #1a1a1a;
}

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

.step-item {
    display: flex;
    gap: 25px;
}

.step-number {
    flex: 0 0 50px;
    height: 50px;
    background-color: #2c2c2c;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1a1a1a;
}

.step-content p {
    font-size: 15px;
    color: #5a5a5a;
    line-height: 1.7;
}

.thanks-cta-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.legal-content {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 40px;
    background-color: #ffffff;
    padding: 60px 70px;
    border-radius: 6px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #1a1a1a;
}

.legal-date {
    font-size: 14px;
    color: #7a7a7a;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #2c2c2c;
}

.legal-content p {
    font-size: 15px;
    color: #5a5a5a;
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.legal-content ul li {
    font-size: 15px;
    color: #5a5a5a;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-content a {
    color: #2c2c2c;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }

    .nav-floating {
        gap: 20px;
    }

    .hero-text-block h1 {
        font-size: 36px;
    }

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

    .course-image {
        flex: 0 0 auto;
        height: 250px;
    }

    .cards-layout {
        gap: 20px;
    }

    .why-card-layout {
        flex-direction: column;
    }

    .why-image-block {
        flex: 0 0 auto;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

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

    .story-image-offset {
        flex: 0 0 auto;
    }

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

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

    .approach-image {
        flex: 0 0 auto;
    }

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

    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}