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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 20px;
    font-weight: normal;
    color: #6b6b6b;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

nav ul li a {
    color: #6b6b6b;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s;
    text-transform: uppercase;
}

nav ul li a:hover,
nav ul li a.active {
    color: #000;
    border-bottom: 2px solid #000;
    padding-bottom: 3px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #2c3e50;
}

.hero {
    display: flex;
    min-height: 400px;
    align-items: stretch;
}

.hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.hero-content {
    flex: 1;
    background: #6b6b6b;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero p {
    font-size: 18px;
    margin: 15px 0;
}

.hero-button {
    display: inline-block;
    background: #fff;
    color: #333;
    padding: 12px 35px;
    text-decoration: none;
    font-weight: 600;
    margin: 25px 0 15px 0;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.hero-button:hover {
    background: #f0f0f0;
}

.hero-phone {
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    margin-top: 10px;
}

.content-section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 32px;
    color: #6b6b6b;
    margin-bottom: 60px;
    margin-top: 60px;
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: uppercase;
}

.columns-container {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.column {
    flex: 1;
    text-align: center;
}

.column h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.column p {
    color: #6b6b6b;
    line-height: 1.8;
    font-size: 15px;
}

.column-content {
    max-height: 100px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.column-content.expanded {
    max-height: 1000px;
}

.show-more-link {
    color: #6b6b6b;
    text-decoration: none;
    font-size: 14px;
    margin-top: 15px;
    display: inline-block;
    cursor: pointer;
}

.show-more-link:hover {
    color: #333;
}

.page-title {
    text-align: center;
    font-size: 32px;
    color: #6b6b6b;
    margin: 60px 0 40px 0;
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: uppercase;
}

.page-section {
    max-width: 800px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.page-section p {
    color: #6b6b6b;
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 5px;
}

.section-heading {
    text-align: center;
    font-size: 24px;
    color: #6b6b6b;
    margin: 60px 0 30px 0;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.contact-container {
    display: flex;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.contact-form-section {
    flex: 1;
}

.contact-info-section {
    flex: 1;
    padding-left: 40px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    background: #f5f5f5;
    font-size: 14px;
    font-family: inherit;
}

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

.contact-submit {
    background: #6b6b6b;
    color: white;
    border: none;
    padding: 12px 40px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-submit:hover {
    background: #555;
}

.download-button {
    display: inline-block;
    background: #6b6b6b;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.download-button:hover {
    background: #555;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-info-section {
        padding-left: 0;
    }
}

.expandable-content {
    max-height: 150px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.expandable-content.expanded {
    max-height: 2000px;
}

.show-more-btn {
    background: #4a90e2;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
    font-size: 16px;
    transition: background 0.3s;
}

.show-more-btn:hover {
    background: #357abd;
}

footer {
    background: #2c3e50;
    color: #fff;
    padding: 30px 0;
    margin-top: 60px;
}

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

.footer-content p {
    margin: 5px 0;
}

.footer-content a {
    color: #4a90e2;
    text-decoration: none;
}

.footer-content a:hover {
    text-decoration: underline;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    display: none;
    z-index: 9999;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-accept {
    background: #4a90e2;
    color: #fff;
    border: none;
    padding: 10px 30px;
    border-radius: 5px;
    cursor: pointer;
    white-space: nowrap;
}

.cookie-accept:hover {
    background: #357abd;
}

.page-content {
    padding: 60px 0;
}

.page-content h1 {
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 36px;
}

.page-content h2 {
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 28px;
}

.page-content h3 {
    color: #2c3e50;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 22px;
}

.page-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.page-content ul, .page-content ol {
    margin-left: 30px;
    margin-bottom: 15px;
}

.page-content ul li, .page-content ol li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        padding: 20px;
    }

    nav ul.active {
        display: flex;
    }

    .hero {
        flex-direction: column;
    }

    .hero-image {
        min-height: 250px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .columns-container {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .top-bar-content {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
}
