/* Reset и основные стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #1B1B1B;
    background-color: #FAF8F2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: #0B3C49;
}

h2 {
    font-size: 2rem;
    color: #0B3C49;
}

h3 {
    font-size: 1.5rem;
    color: #0B3C49;
}

p {
    margin-bottom: 1rem;
    color: #1B1B1B;
}

/* Boutons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #FFBA08 0%, #FF9500 100%);
    color: #1B1B1B;
    box-shadow: 0 4px 15px rgba(255, 186, 8, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 186, 8, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #0B3C49;
    border: 2px solid #0B3C49;
}

.btn-secondary:hover {
    background: #0B3C49;
    color: #FAF8F2;
}

/* Header */
.header {
    background: #FAF8F2;
    box-shadow: 0 2px 10px rgba(11, 60, 73, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #0B3C49;
}

.logo-image {
    height: 40px;
    width: 40px;
    margin-right: 10px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0B3C49;
}

/* Navigation */
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #1B1B1B;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #FFBA08;
}

.btn-nav {
    background: linear-gradient(135deg, #FFBA08 0%, #FF9500 100%);
    color: #1B1B1B !important;
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 0.9rem;
}

.btn-nav:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 186, 8, 0.3);
}

/* Mobile menu */
.mobile-menu-toggle {
    display: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #0B3C49;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #FAF8F2 0%, #F5F3ED 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #0B3C49;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #1B1B1B;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(11, 60, 73, 0.2);
}

/* Section headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #1B1B1B;
    opacity: 0.8;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #FFFFFF;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-features {
    list-style: none;
    margin-top: 2rem;
}

.about-features li {
    padding: 10px 0;
    border-bottom: 1px solid #E5E5E5;
}

.about-features li:last-child {
    border-bottom: none;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(11, 60, 73, 0.1);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #FAF8F2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(11, 60, 73, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #0B3C49;
}

.service-card ul {
    list-style: none;
    margin-top: 1rem;
}

.service-card li {
    padding: 5px 0;
    color: #1B1B1B;
}

.service-card li:before {
    content: "✓";
    color: #FFBA08;
    margin-right: 10px;
    font-weight: bold;
}

/* Advantages Section */
.advantages {
    padding: 80px 0;
    background: #FFFFFF;
}

.advantages-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.advantage-number {
    background: linear-gradient(135deg, #FFBA08 0%, #FF9500 100%);
    color: #1B1B1B;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.advantage-text h3 {
    margin-bottom: 0.5rem;
    color: #0B3C49;
}

.advantage-text p {
    color: #1B1B1B;
    margin: 0;
}

.advantages-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(11, 60, 73, 0.1);
}

/* Cases Section */
.cases {
    padding: 80px 0;
    background: #FAF8F2;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.case-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(11, 60, 73, 0.1);
    transition: transform 0.3s ease;
}

.case-card:hover {
    transform: translateY(-5px);
}

.case-card h3 {
    color: #0B3C49;
    margin-bottom: 1rem;
}

.case-card p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.case-card strong {
    color: #FFBA08;
}

/* Trust Section */
.trust {
    padding: 80px 0;
    background: #FFFFFF;
}

.trust-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.trust-certifications h3,
.trust-commitments h3 {
    color: #0B3C49;
    margin-bottom: 1rem;
}

.certifications-list,
.commitments-list {
    list-style: none;
}

.certifications-list li,
.commitments-list li {
    padding: 10px 0;
    border-bottom: 1px solid #E5E5E5;
}

.certifications-list li:last-child,
.commitments-list li:last-child {
    border-bottom: none;
}

.trust-image {
    text-align: center;
}

.trust-image img {
    width: 60%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(11, 60, 73, 0.1);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #FAF8F2;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    color: #0B3C49;
    margin-bottom: 1rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.contact-item strong {
    color: #0B3C49;
    display: block;
}

.contact-item a {
    color: #FFBA08;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Form styles */
.contact-form {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(11, 60, 73, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #0B3C49;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #E5E5E5;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #FFFFFF;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFBA08;
}

.form-checkboxes {
    margin: 2rem 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    width: auto;
}

.checkbox-label a {
    color: #FFBA08;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #0B3C49;
    color: #FAF8F2;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #FFBA08;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 30px;
    width: 30px;
    margin-right: 10px;
}

.footer-logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #FAF8F2;
}

.footer-description {
    margin-bottom: 1rem;
    color: #FAF8F2;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #FAF8F2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFBA08;
}

.footer-contact .contact-item {
    margin-bottom: 1rem;
}

.contact-label {
    color: #FFBA08;
    font-weight: 500;
}

.contact-value {
    color: #FAF8F2;
}

.contact-value a {
    color: #FAF8F2;
    text-decoration: none;
}

.contact-value a:hover {
    color: #FFBA08;
}

.footer-social {
    margin-top: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link {
    color: #FAF8F2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #FFBA08;
}

.footer-bottom {
    border-top: 1px solid rgba(250, 248, 242, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom-content p {
    color: #FAF8F2;
    margin-bottom: 0.5rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #FFFFFF;
    border: 2px solid #FFBA08;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(11, 60, 73, 0.2);
    z-index: 10000;
    max-width: 500px;
    margin: 0 auto;
    display: none;
}

.cookie-content h3 {
    color: #0B3C49;
    margin-bottom: 1rem;
}

.cookie-content p {
    margin-bottom: 1rem;
    color: #1B1B1B;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    flex: 1;
    min-width: 120px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Mobile menu */
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #FAF8F2;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .mobile-menu-toggle:checked + .mobile-menu-btn + .nav .nav-menu {
        left: 0;
    }
    
    .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);
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    /* Hero */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Sections */
    .about-content,
    .advantages-content,
    .contact-content,
    .trust-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .advantages-image {
        order: -1;
    }
    
    .services-grid,
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cookie-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .advantage-item {
        flex-direction: column;
        text-align: center;
    }
    
    .advantage-number {
        margin: 0 auto 1rem;
    }
} 