/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #ffffff;
}

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

/* Layout components */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 640px) {
    .container {
        padding: 0 24px;
    }
}

@media (min-width: 768px) {
    .container {
        padding: 0 32px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 48px;
    }
}

.section-wrapper {
    width: 100%;
}

.content-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 640px) {
    .content-container {
        padding: 0 24px;
    }
}

@media (min-width: 768px) {
    .content-container {
        padding: 0 32px;
    }
}

@media (min-width: 1024px) {
    .content-container {
        padding: 0 40px;
    }
}

/* Header */
.header {
    background-color: #f2f7f9;
    border-radius: 36px;
    padding: 10px 20px;
    margin: 20px 40px 0;
}

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

.logo {
    width: 120px;
    height: auto;
}

@media (min-width: 768px) {
    .logo {
        width: 166px;
    }
}

.nav-menu {
    display: none;
}

@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
        gap: 30px;
        align-items: center;
    }
}

.nav-link {
    font-size: 16px;
    font-weight: 400;
    color: #05385a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #01a3c9;
}

.cta-button {
    background-color: #ffffff;
    color: #05385a;
    border: 1px solid #05385a;
    border-radius: 40px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .cta-button {
        padding: 12px 34px;
        font-size: 16px;
    }
}

.cta-button:hover {
    background-color: #05385a;
    color: #ffffff;
}

.hamburger {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    color: #05385a;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .hamburger {
        display: none;
    }
}

/* Hero Section - Updated width and colors */
.hero-section {
    border-radius: 50px 0 0 0;
    margin: 10px 40px 0 40px;
    position: relative;
    overflow: hidden;
    background: #f2f7f9;
}
.hero-section:after {
    position: absolute;
    content: "";
    background: url('assets/images/img_10817260_19406401.png') left no-repeat ;
    width: 816px;
    height: 430px;
    left: 580px;
    top: 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    margin: 0 auto;
    position: relative;
}

@media (min-width: 768px) {
    .hero-content {
        flex-direction: row;
        padding: 60px 40px;
        align-items: flex-start;
    }
}

.hero-text {
    flex: 1;
    z-index: 2;
    max-width: 100%;
}

.hero-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    background: linear-gradient(90deg, #000 0%, #01A3C9 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: fit-content;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 48px;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 60px;
        line-height: 74px;
    }
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    color: #05385a;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 32px;
    }
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 42px;
        line-height: 51px;
    }
}

.hero-subtitle-light {
    font-weight: 400;
    color: #01a3c9;
}

.hero-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    color: #000000b2;
    margin: 20px 0 30px;
    max-width: 85%;
}

@media (min-width: 1024px) {
    .hero-description {
        font-size: 18px;
        line-height: 21px;
        max-width: 90%;
    }
}

.hero-cta {
    background-color: #05385a;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 24px;
    padding: 14px 34px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background-color: #ffffff;
    color: #05385a;
    border-color: #05385a;
}

.hero-image {
    width: 100%;
    max-width: 400px;
    margin-top: 20px;
}

@media (min-width: 768px) {
    .hero-image {
        width: 46%;
        margin-top: 0;
        margin-left: -200px;
    }
}

@media (min-width: 1024px) {
    .hero-image {
        width: 816px;
        height: 430px;
    }
}

/* Services Grid */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    margin: 20px 0;
}

@media (min-width: 768px) {
    .services-grid {
        flex-direction: row;
        gap: 4px;
        padding: 0 38px;
    }
}

.service-card {
    flex: 1;
    padding: 20px;
    border-radius: 50px 0px 0px 50px;
    background-size: cover;
    background-position: center;
    color: #ffffff;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, 0.40);
    position: relative;
}

.service-card:nth-child(2),
.service-card-3{
    justify-content: flex-start;
}


.service-card:after {
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    background-color: rgba(0, 0, 0, 0.40);
    z-index: 10;
    top: 0;
    left: 0;
}

.service-card-1 {
    background-image: url('assets/images/img_.png');
    border-radius: 0px 50px 0px 0px;
    background-color: rgba(0, 0, 0, 0.40);
}
.service-card-1.service-card:after {
    border-radius: 0px 50px 0px 0px;
}

.service-card-2 {
    background-image: url('assets/images/img_0x0.png');
    border-radius: 50px 0;
    background-color: rgba(0, 0, 0, 0.40);
}
.service-card-2.service-card:after {
    border-radius: 50px 0px;
}

.service-card-3 {
    background-image: url('assets/images/img_2.png');
    border-radius: 0px 0px 0px 50px;
}
.service-card-3.service-card:after {
    border-radius: 0px 0px 0px 50px;
}

.service-card-4 {
    background-image: url('assets/images/img_3.png');
    border-radius: 0px 0px 50px 0px;
}
.service-card-4.service-card:after {
    border-radius: 0px 0px 50px 0px;
}
.service-number {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 18px;
    font-weight: 400;
    width: fit-content;
    z-index: 10000;
}

.service-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 20px;
    z-index: 10000;
}

@media (min-width: 768px) {
    .service-title {
        font-size: 20px;
    }
}

.service-features {
    background-color: #ffffff;
    border-radius: 0px 50px 0px 0px;
    padding: 18px;
    margin: 0 20px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    width: 38px;
    height: 38px;
}

.feature-text {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.25;
    color: #05385a;
}

@media (min-width: 768px) {
    .feature-text {
        font-size: 24px;
        line-height: 30px;
    }
}

.side {
    display: flex;
    flex-direction: column;
    width: 430px;
}


/* Section Titles - Centered Our Services */
.section-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 34px;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 42px;
        line-height: 52px;
    }
}

/* About Section */
.about-section {
    padding: 40px 0;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 768px) {
    .about-content {
        flex-direction: row;
        align-items: center;
    }
}

.about-text {
    flex: 1;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.45;
    color: #000000;
}

@media (min-width: 768px) {
    .about-text {
        font-size: 24px;
        line-height: 29px;
    }
}

.mission-card {
    flex: 1;
    background-color: #f2f7f9;
    border-radius: 50px;
    padding: 30px;
}

@media (min-width: 768px) {
    .mission-card {
        padding: 42px 40px;
    }
}

.mission-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    color: #000000;
    margin-bottom: 14px;
}

@media (min-width: 768px) {
    .mission-title {
        font-size: 32px;
        line-height: 40px;
    }
}

.mission-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    color: #000000;
}

@media (min-width: 768px) {
    .mission-text {
        font-size: 20px;
        line-height: 24px;
    }
}

.mission-text-bold {
    font-weight: 600;
}

/* Tags Section - Updated for sliding animation */
.tags-section {
    background-color: #ffffff;
    overflow: hidden;
    padding: 5px 0;
    position: relative;
}

.tags-container {
    display: flex;
    gap: 10px;
    white-space: nowrap;
    animation: slide 30s linear infinite;
}
.tags-section-reverse .tags-container {
    animation: slide-reverse 30s linear infinite;
}

.tags-container:hover {
    animation-play-state: paused;
}


@keyframes slide-reverse {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(100%);
    }
}



@keyframes slide {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.tag {
    background-color: #f2f7f9;
    color: #05385a;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.25;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .tag {
        font-size: 16px;
        line-height: 20px;
    }
}

/* Services Section - Centered */
.services-section {
    padding: 76px 0;
}

.services-grid-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 34px;
    justify-items: center;
}

@media (min-width: 640px) {
    .services-grid-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid-main {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
    }
}

.service-card-main {
    border: 1px solid #05385a;
    border-radius: 30px;
    padding: 30px 20px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 400px;
}

@media (min-width: 768px) {
    .service-card-main {
        padding: 40px 20px;
    }
}

.service-card-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(5, 56, 90, 0.1);
}

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

@media (min-width: 768px) {
    .service-icon {
        width: 60px;
        height: 60px;
    }
}

.service-card-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.25;
    color: #000000;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .service-card-title {
        font-size: 20px;
        line-height: 25px;
    }
}

.service-card-subtitle {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    color: #0000007f;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .service-card-subtitle {
        font-size: 16px;
        line-height: 19px;
    }
}

.service-card-description {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
    color: #000000;
}

@media (min-width: 768px) {
    .service-card-description {
        font-size: 14px;
        line-height: 17px;
    }
}

/* How We Work Section */
.work-process-section {
    padding: 60px 0;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin: 40px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
}

@media (min-width: 768px) {
    .process-steps {
        gap: 80px;
    }
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

@media (min-width: 768px) {
    .process-step {
        flex-direction: row;
        gap: 100px;
    }
}



@media (min-width: 768px) {

}

.step-number {
    background-color: #01a3c9;
    color: #ffffff;
    border-radius: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;

}
.side:nth-child(odd) .step-number {
    margin-left: auto;
}

@media (min-width: 768px) {
    .step-number {
        font-size: 32px;
        line-height: 40px;
    }
}

.step-content {
    flex: 1;
    text-align: center;
}

@media (min-width: 768px) {
    .step-content {
        text-align: left;
    }

    .process-step:nth-child(even) .step-content {
        text-align: right;
    }
}

.step-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    color: #000000;
    margin-bottom: 18px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .step-title {
        font-size: 20px;
        line-height: 24px;
    }
}

.step-description {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
    color: #000000;
}

@media (min-width: 768px) {
    .step-description {
        font-size: 14px;
        line-height: 17px;
    }
}

.step-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .step-icon {
        width: 80px;
        height: 80px;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 40px 0;
}

.pricing-content {
    background-color: #f2f7f9;
    border-radius: 0 50px 0 50px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

@media (min-width: 768px) {
    .pricing-content {
        flex-direction: row;
        padding: 60px 40px;
    }
}

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

@media (min-width: 768px) {
    .pricing-list {
        gap: 38px;
    }
}

.pricing-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 768px) {
    .pricing-row {
        flex-direction: row;
        gap: 40px;
    }
}

.pricing-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex: 0 0 40%;
}

.pricing-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

@media (min-width: 768px) {
    .pricing-icon {
        width: 30px;
        height: 30px;
    }
}

.pricing-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    color: #000000;
}

@media (min-width: 768px) {
    .pricing-text {
        font-size: 20px;
        line-height: 24px;
    }
}

.pricing-image {
    width: 100%;
    max-width: 300px;
    margin-top: 20px;
}

@media (min-width: 768px) {
    .pricing-image {
        width: 40%;
        margin-top: 0;
    }
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.contact-content {
    background-color: transparent;
    border-radius: 50px 0px 0px 50px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
}

@media (min-width: 768px) {
    .contact-content {
        flex-direction: row;
        padding: 40px;
    }
}

.contact-info {
    flex: 1;
    color: #000000;
}

.contact-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #000000;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .contact-description {
        font-size: 16px;
        line-height: 19px;
    }
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-icon {
    width: 20px;
    height: 20px;
}

.contact-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.25;
    color: #000000;
}

@media (min-width: 768px) {
    .contact-text {
        font-size: 20px;
        line-height: 25px;
    }
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000000;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

@media (min-width: 768px) {
    .social-link {
        font-size: 20px;
    }
}

.social-link:hover {
    opacity: 0.8;
}

/* Contact Form - Blue background only on form area */
.contact-form {
    flex: 0 1 70%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background-color: #05385a;
    border-radius: 30px 0 30px 0;
    padding: 30px;
}

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

@media (min-width: 768px) {
    .form-row {
        flex-direction: row;
        gap: 20px;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.form-label {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.25;
    color: #f2f7f9;
}

@media (min-width: 768px) {
    .form-label {
        font-size: 16px;
        line-height: 20px;
    }
}

.required {
    color: #ff250c;
}

.form-input {
    background-color: transparent;
    border: 1px solid #f2f7f9;
    border-radius: 22px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    transition: border-color 0.3s ease;
    width: 100%;
}

.form-input option {
    color: #000000;
}

.form-input::placeholder {
    color: #b3b3b3;
}

.form-input:focus {
    outline: none;
    border-color: #01a3c9;
}

.form-textarea {
    min-height: 100px;
    border-radius: 22px;
    resize: vertical;
    padding: 14px 16px;
}

.form-select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
}

.form-select {
    position: relative;
}

.form-select::after {
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    width: 8px;
    height: 8px;
    color: #fff;
    pointer-events: none;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translateY(-50%) rotate(-45deg);
}

.privacy-text {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
    color: #ffffff;
    margin-top: 10px;
}

.privacy-text a {
	font-size: 13px;
	color: #ffffff;
}

@media (min-width: 768px) {
    .privacy-text {
        font-size: 14px;
        line-height: 17px;
    }
}

.privacy-link {
    text-decoration: underline;
    color: #ffffff;
}

.submit-button {
    background-color: #ffc107;
    color: #05385a;
    border: none;
    border-radius: 24px;
    padding: 14px 34px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.submit-button:hover {
    background-color: #ffb300;
    transform: translateY(-2px);
}

/* Footer - Updated background */
.footer {
    background: linear-gradient(180deg, #ffffff 0%, #e6f8ff 100%);
    padding: 20px 0 20px;
}

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

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-brand {
    flex: 1;
}

.footer-logo {
    width: 120px;
    height: auto;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .footer-logo {
        width: 166px;
    }
}

.footer-description {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
    color: #000000;
    max-width: 60%;
}

@media (min-width: 768px) {
    .footer-description {
        font-size: 14px;
        line-height: 17px;
    }
}

@media (max-width: 767px) {
    .header-content .cta-button {
        display: none;
    }
    .nav-menu {
        display: flex;
        gap: 20px;
        align-items: center;
    }

    .side, .step-icon {
        width: 100%;
    }

    .hamburger {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px; height: 40px;
        font-size: 22px;
        border: none; background: transparent;
    }

    .nav-menu {
        display: none !important;
        position: fixed;
        top: 64px;
        left: 0; right: 0;
        flex-direction: column;
        gap: 12px;
        padding: 16px;
        background: #fff;
        box-shadow: 0 8px 24px rgba(0,0,0,.08);
        z-index: 1000;
        max-height: calc(100dvh - 64px);
        overflow-y: auto;
        transform: translateY(-8px);
        opacity: 0;
        pointer-events: none;
        transition: opacity .2s ease, transform .2s ease;
    }

    .nav-menu.is-open {
        display: flex !important;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-link {
        display: block;
        padding: 12px 8px;
        font-size: 16px;
    }

    body.no-scroll { overflow: hidden; }

    .header {
        margin: 20px 20px 0;
    }
    .hero-section {
        margin:10px 20px 0 20px
    }

    .contact-content, .footer {
        padding: 0;
    }
}

.footer-section {

}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    color: #000000;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .footer-title {
        font-size: 24px;
        line-height: 30px;
    }
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-link {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.25;
    color: #05385a;
    text-decoration: none;
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .footer-link {
        font-size: 16px;
        line-height: 20px;
    }
}

.footer-link:hover {
    color: #01a3c9;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-icon {
    width: 20px;
    height: 20px;
}

.footer-contact-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.25;
    color: #000000;
}

@media (min-width: 768px) {
    .footer-contact-text {
        font-size: 16px;
        line-height: 20px;
    }
}

.footer-social {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .footer-social-link {
        font-size: 18px;
        line-height: 22px;
    }
}

.footer-social-link:hover {
    color: #01a3c9;
}

.footer-bottom {
    border-top: 1px solid #ffffff;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
    color: #000000b2;
}

@media (min-width: 768px) {
    .footer-copyright {
        font-size: 14px;
        line-height: 18px;
    }
}

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

.footer-legal-link {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
    color: #000000b2;
    text-decoration: none;
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .footer-legal-link {
        font-size: 14px;
        line-height: 18px;
    }
}

.footer-legal-link:hover {
    color: #01a3c9;
}

/* Interactive states */
button, .cta-button, .hero-cta, .submit-button {
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

button:hover, .cta-button:hover, .hero-cta:hover {
    transform: translateY(-2px);
}

button:active, .cta-button:active, .hero-cta:active {
    transform: translateY(0);
}

/* Responsive media queries */
@media (max-width: 639px) {
    .hero-content {
        text-align: center;
    }

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

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

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

/* Форма */

.form-input.is-invalid,
.form-select .form-input.is-invalid {
    border-color: #e53935;
    box-shadow: 0 0 0 3px rgba(229,57,53,0.1);
}

.form-input.is-valid {
    border-color: #2e7d32;
}

.field-error {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.2;
    color: #e53935;
    min-height: 14px;
}

.form-toast {
    margin-top: 12px;
    font-size: 14px;
    opacity: 0;
    transition: opacity .25s ease;
}

.form-toast.show {
    opacity: 1;
}

.submit-button[disabled] {
    opacity: .6;
    cursor: not-allowed;
}

.contact-form .field-error {
    display: none;
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.2;
    color: #e53935;
}

.contact-form .field-error:not(:empty) {
    display: block;
}

.contact-form .form-group:has(.form-input.is-invalid) {
    padding-bottom: 4px;
}

[name="message"] {
    height: 100%;
}

[for="email"] {
    margin-top: 10px;
}