/* Reset и базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #001f3f 0%, #005082 100%);
    min-height: 100vh;
}

/* Контейнер */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(0, 31, 63, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #00c2cb;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #f0f0f0;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}


.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(45deg, #00c2cb, #ffcc00);
    color: #001f3f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 194, 203, 0.3);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #00c2cb;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 31, 63, 0.98);
    backdrop-filter: blur(15px);
    border-top: 2px solid #00c2cb;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-nav-list {
    list-style: none;
    padding: 1rem 0;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(0, 194, 203, 0.2);
}

.mobile-nav-link {
    display: block;
    color: #f0f0f0;
    text-decoration: none;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: rgba(0, 194, 203, 0.1);
    color: #00c2cb;
}

/* Main Content */
.main-content {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    background: 
        linear-gradient(135deg, rgba(0, 31, 63, 0.85), rgba(0, 80, 130, 0.85)),
        url('img/OUWt2O.jpg') center/cover no-repeat;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 194, 203, 0.1) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00c2cb, #ffcc00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #f0f0f0;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.2rem;
    color: #f0f0f0;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #00c2cb, #ffcc00);
    color: #001f3f;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 194, 203, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 194, 203, 0.5);
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #00c2cb;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #00c2cb, #ffcc00);
    border-radius: 2px;
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #f0f0f0;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Grid Layout */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.grid-item {
    background: rgba(0, 31, 63, 0.6);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(0, 194, 203, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Default grid item hover effects (can be overridden by specific sections) */
.grid-item:not(.values-card):not(#services .grid-item):not(#testimonials .grid-item):not(.why-us-item)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 194, 203, 0.1), rgba(255, 204, 0, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.grid-item:not(.values-card):not(#services .grid-item):not(#testimonials .grid-item):not(.why-us-item):hover::before {
    opacity: 1;
}

.grid-item:not(.values-card):not(#services .grid-item):not(#testimonials .grid-item):not(.why-us-item):hover {
    transform: translateY(-5px);
    border-color: #00c2cb;
    box-shadow: 0 10px 30px rgba(0, 194, 203, 0.2);
}

.grid-item h3 {
    color: #00c2cb;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
}

.grid-item p {
    color: #f0f0f0;
    position: relative;
    z-index: 2;
}

/* Values Section Specific Styles */
.values-card {
    display: flex;
    flex-direction: column;
    height: auto;
    overflow: hidden;
}

.values-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    border-radius: 15px 15px 0 0;
}

.values-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.values-card:hover .values-img {
    transform: scale(1.1);
}

.values-content {
    padding: 1.5rem;
    background: rgba(0, 31, 63, 0.8);
    border-radius: 0 0 15px 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.values-content h3 {
    margin-bottom: 1rem;
    color: #00c2cb;
    font-size: 1.3rem;
}

.values-content p {
    margin: 0;
    line-height: 1.6;
    flex-grow: 1;
}

/* Services Section Specific Styles */
#services {
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.95), rgba(0, 80, 130, 0.95));
    position: relative;
}

#services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(0, 194, 203, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

#services .grid-item {
    background: linear-gradient(145deg, rgba(0, 31, 63, 0.9), rgba(0, 80, 130, 0.7));
    border: 1px solid rgba(0, 194, 203, 0.4);
    box-shadow: 0 8px 32px rgba(0, 194, 203, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

#services .grid-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00c2cb, #ffcc00, #00c2cb);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

#services .grid-item:hover::after {
    transform: translateX(0);
}

#services .grid-item:hover {
    transform: translateY(-8px);
    border-color: #00c2cb;
    box-shadow: 0 15px 45px rgba(0, 194, 203, 0.2);
}

#services .grid-item h3 {
    color: #ffcc00;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    position: relative;
}

#services .grid-item h3::before {
    content: '◆';
    color: #00c2cb;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

#services .grid-item p {
    color: #f0f0f0;
    line-height: 1.7;
    font-size: 1rem;
}

/* Testimonials Section Specific Styles */
#testimonials {
    background: 
        linear-gradient(165deg, rgba(0, 31, 63, 0.92), rgba(0, 80, 130, 0.90)),
        url('img/OUWt2O.jpg') center/cover no-repeat fixed;
    position: relative;
    overflow: hidden;
}

#testimonials::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.03) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#testimonials .grid-item {
    background: linear-gradient(145deg, rgba(0, 194, 203, 0.1), rgba(255, 204, 0, 0.05));
    border: 2px solid rgba(255, 204, 0, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    backdrop-filter: blur(15px);
    box-shadow: 0 12px 35px rgba(255, 204, 0, 0.1);
}

#testimonials .grid-item::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    font-weight: bold;
    color: #ffcc00;
    opacity: 0.6;
    font-family: serif;
}

#testimonials .grid-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffcc00, transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

#testimonials .grid-item:hover::after {
    transform: scaleX(1);
}

#testimonials .grid-item:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: #ffcc00;
    box-shadow: 0 20px 50px rgba(255, 204, 0, 0.15);
}

#testimonials .grid-item p {
    color: #f0f0f0;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

#testimonials .grid-item h3 {
    color: #00c2cb;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: right;
    margin: 0;
    position: relative;
    z-index: 2;
}

#testimonials .grid-item h3::before {
    content: '—';
    margin-right: 0.5rem;
    color: #ffcc00;
}

/* Why Choose Us Section Specific Styles */
.why-us-section {
    background: linear-gradient(45deg, rgba(0, 31, 63, 0.95), rgba(0, 80, 130, 0.9));
    position: relative;
    overflow: hidden;
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 194, 203, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 204, 0, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.why-us-item {
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.8), rgba(0, 80, 130, 0.6));
    border: 2px solid rgba(0, 194, 203, 0.3);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(10px);
}

.why-us-item::before {
    content: attr(data-number);
    position: absolute;
    top: -15px;
    right: -15px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00c2cb, #ffcc00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: #001f3f;
    box-shadow: 0 4px 15px rgba(0, 194, 203, 0.3);
    transition: all 0.3s ease;
    z-index: 2;
}

.why-us-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 194, 203, 0.1), rgba(255, 204, 0, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.why-us-item:hover::after {
    opacity: 1;
}

.why-us-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #00c2cb;
    box-shadow: 0 20px 40px rgba(0, 194, 203, 0.2);
}

.why-us-item:hover::before {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 20px rgba(0, 194, 203, 0.4);
}

.why-us-icon {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 3;
}

.icon-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, rgba(0, 194, 203, 0.2), rgba(255, 204, 0, 0.2));
    border: 3px solid rgba(0, 194, 203, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.icon-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 194, 203, 0.1), rgba(255, 204, 0, 0.1));
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.why-us-item:hover .icon-badge::before {
    transform: scale(1);
}

.why-us-item:hover .icon-badge {
    border-color: #ffcc00;
    transform: scale(1.1);
}

.why-us-content {
    position: relative;
    z-index: 3;
}

.why-us-content h3 {
    color: #00c2cb;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.why-us-item:hover .why-us-content h3 {
    color: #ffcc00;
}

.why-us-content p {
    color: #f0f0f0;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Связующие линии между элементами (только на больших экранах) */
@media (min-width: 1024px) {
    .why-us-grid {
        position: relative;
    }
    
    
}

/* Form Styles */
.form-container {
    background: rgba(0, 31, 63, 0.8);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(0, 194, 203, 0.3);
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-errors {
    background: rgba(220, 53, 69, 0.1);
    border: 2px solid #dc3545;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 2rem;
}

.error-message {
    color: #dc3545;
    margin: 0.5rem 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.error-message::before {
    content: "⚠ ";
    margin-right: 0.5rem;
    font-size: 1rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #00c2cb;
    font-weight: 500;
}

.form-input,
.form-select {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(0, 194, 203, 0.3);
    border-radius: 10px;
    background: rgba(0, 31, 63, 0.9);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #00c2cb;
    box-shadow: 0 0 15px rgba(0, 194, 203, 0.3);
}

.form-input::placeholder {
    color: rgba(240, 240, 240, 0.6);
}

.form-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-checkbox {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: #00c2cb;
}

.form-checkbox-label {
    color: #f0f0f0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.form-checkbox-label a {
    color: #00c2cb;
    text-decoration: none;
}

.form-checkbox-label a:hover {
    text-decoration: underline;
}

.form-submit {
    background: linear-gradient(45deg, #00c2cb, #ffcc00);
    color: #001f3f;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.form-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.form-submit:hover::before {
    left: 100%;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 194, 203, 0.4);
}

/* Footer */
.footer {
    background: rgba(0, 31, 63, 0.95);
    border-top: 2px solid #00c2cb;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #00c2cb;
    margin-bottom: 1rem;
}

.footer-title {
    font-size: 1.5rem;
}

.footer-subtitle {
    font-size: 1.2rem;
}

.footer-description {
    color: #f0f0f0;
    line-height: 1.6;
}

.footer-contact-item {
    margin-bottom: 0.5rem;
}

.footer-label {
    color: #ffffff;
    font-weight: 500;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #00c2cb;
}

.footer-text {
    color: #ffffff;
}

.footer-links {
    list-style: none;
}

.footer-link-item {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 194, 203, 0.2);
}

.footer-copyright {
    color: #f0f0f0;
    font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 31, 63, 0.95);
    border: 2px solid #00c2cb;
    border-radius: 15px;
    padding: 2rem;
    max-width: 350px;
    z-index: 10000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: none;
}

.cookie-title {
    color: #00c2cb;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.cookie-text {
    color: #f0f0f0;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cookie-accept {
    background: linear-gradient(45deg, #00c2cb, #ffcc00);
    color: #001f3f;
}

.cookie-info {
    background: transparent;
    color: #00c2cb;
    border: 2px solid #00c2cb;
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 194, 203, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .mobile-menu-toggle:checked ~ .mobile-nav {
        max-height: 400px;
    }
    
    .mobile-menu-toggle:checked ~ .mobile-menu-btn span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle:checked ~ .mobile-menu-btn span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle:checked ~ .mobile-menu-btn span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .grid {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 2rem 1.5rem;
    }
    
    .cookie-popup {
        right: 10px;
        bottom: 10px;
        max-width: calc(100% - 20px);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Hero responsive */
    .hero {
        min-height: 80vh;
        padding: 3rem 0;
    }
    
    /* Values responsive */
    .values-image {
        height: 150px;
    }
    
    .values-content {
        padding: 1rem;
    }
    
    .values-content h3 {
        font-size: 1.2rem;
    }
    
    /* Services responsive */
    #services .grid-item h3 {
        font-size: 1.4rem;
    }
    
    #services .grid-item h3::before {
        font-size: 1rem;
    }
    
    /* Testimonials responsive */
    #testimonials .grid-item {
        padding: 1.5rem;
    }
    
    #testimonials .grid-item::before {
        font-size: 3rem;
        top: -5px;
        left: 15px;
    }
    
    #testimonials .grid-item p {
        font-size: 1rem;
    }
    
    #testimonials .grid-item h3 {
        font-size: 1rem;
    }
    
    /* Why Choose Us responsive */
    .why-us-grid {
        gap: 1.5rem;
    }
    
    .why-us-item {
        padding: 1.5rem;
    }
    
    .why-us-item::before {
        width: 50px;
        height: 50px;
        font-size: 1rem;
        top: -10px;
        right: -10px;
    }
    
    .icon-badge {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .why-us-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    .form-checkbox-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .form-checkbox {
        margin-top: 0;
    }
    
    /* Hero mobile */
    .hero {
        min-height: 70vh;
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    /* Values mobile */
    .values-image {
        height: 120px;
    }
    
    .values-content {
        padding: 0.8rem;
    }
    
    .values-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .values-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Services mobile */
    #services .grid-item {
        padding: 1.5rem;
    }
    
    #services .grid-item h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    #services .grid-item p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Testimonials mobile */
    #testimonials .grid-item {
        padding: 1.2rem;
    }
    
    #testimonials .grid-item::before {
        font-size: 2.5rem;
        top: -3px;
        left: 10px;
    }
    
    #testimonials .grid-item p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    #testimonials .grid-item h3 {
        font-size: 0.9rem;
    }
    
    /* Why Choose Us mobile */
    .why-us-grid {
        gap: 1rem;
        grid-template-columns: 1fr;
    }
    
    .why-us-item {
        padding: 1.2rem;
    }
    
    .why-us-item::before {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
        top: -8px;
        right: -8px;
    }
    
    .icon-badge {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .why-us-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .why-us-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Отключаем связующие линии на мобильных */
    .why-us-grid::before,
    .why-us-grid::after {
        display: none;
    }
} 