* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #1a2332;
    --primary-orange: #ff6b35;
    --primary-white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: var(--primary-white);
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-dark);
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-orange);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-dark);
    transition: all 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-icons a {
    color: var(--text-dark);
    font-size: 1.2rem;
    text-decoration: none;
}

.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-dark) 50%, var(--primary-white) 50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem 0;
}

.hero-text {
    color: var(--primary-white);
    padding: 2rem;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-orange);
    color: var(--primary-white);
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--primary-white);
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
}

.btn-secondary:hover {
    background: var(--primary-dark);
    color: var(--primary-white);
}

.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-dark);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: var(--primary-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-card-content {
    padding: 1.5rem;
}

.product-card h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.product-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.info-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.info-text {
    padding: 2rem;
}

.info-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.info-text p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.info-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-item span {
    color: var(--primary-orange);
    font-size: 1.5rem;
}

.feature-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.feature-block {
    background: var(--primary-dark);
    color: var(--primary-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.feature-block span {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.cta-section {
    background: var(--primary-dark);
    color: var(--primary-white);
    padding: 4rem 0;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-text p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-box {
    background: var(--primary-white);
    color: var(--primary-dark);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cta-box span {
    font-size: 2rem;
}

.cta-box-content {
    flex: 1;
}

.cta-box-content h3 {
    margin-bottom: 0.5rem;
}

.cta-orange {
    background: var(--primary-orange);
    color: var(--primary-white);
    padding: 3rem 2rem;
    border-radius: 8px;
}

.cta-orange h3 {
    margin-bottom: 1rem;
}

.cta-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-category {
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    font-weight: normal;
    font-size: 0.9rem;
}

footer {
    background: var(--primary-dark);
    color: var(--primary-white);
    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 {
    margin-bottom: 1rem;
}

.footer-section a {
    color: var(--primary-white);
    text-decoration: none;
    opacity: 0.8;
    display: block;
    margin-bottom: 0.5rem;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.footer-links a {
    color: var(--primary-white);
    text-decoration: none;
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-links a:hover {
    opacity: 1;
}

.privacy-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--primary-dark);
    color: var(--primary-white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    z-index: 10000;
    display: none;
    max-width: 500px;
    margin: 0 auto;
}

.privacy-popup.show {
    display: block;
}

.privacy-popup p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.privacy-popup-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.privacy-popup-buttons .btn {
    flex: 1;
    min-width: 120px;
    text-align: center;
}

.page-header {
    background: var(--primary-dark);
    color: var(--primary-white);
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-content {
    padding: 3rem 0;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.content-section p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-orange);
}

.service-item h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.service-item ul {
    list-style: none;
    padding-left: 0;
}

.service-item ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-item ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

.success-page {
    min-height: calc(100vh - 542px);
    text-align: center;
    place-content: center;
    padding: 4rem 0;
}

.success-page h1 {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.success-page p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hero-content,
    .info-section,
    .cta-content {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--primary-white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 2rem 0;
        gap: 2rem;
        transition: left 0.3s;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
    }

    .feature-blocks {
        grid-template-columns: 1fr;
    }

    .products-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-section {
        padding: 2rem 0;
    }

    .cta-content {
        gap: 2rem;
    }

    .cta-text h2 {
        font-size: 1.75rem;
    }

    .cta-text p {
        font-size: 1rem;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }

    .cta-box span {
        font-size: 1.5rem;
    }

    .cta-box .btn {
        width: 100%;
        margin-top: 1rem;
    }

    .cta-orange {
        padding: 2rem 1.5rem;
    }

    .cta-orange img {
        width: 100%;
        height: auto;
        max-width: 100%;
    }

    .cta-orange .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 400px;
    }

    .info-text {
        width: 280px;
    }
    feature-blocks {
        width: 280px;
        margin: 0 auto;
    }
    .info-features{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }
    .cta-section {
        padding: 1.5rem 0;
    }

    .cta-content {
        gap: 1.5rem;
    }

    .cta-text h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .cta-text p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .cta-box {
        padding: 1rem;
        gap: 0.75rem;
    }

    .cta-box span {
        font-size: 1.25rem;
    }

    .cta-box-content h3 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .cta-box-content p {
        font-size: 0.85rem;
    }

    .cta-box .btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .cta-orange {
        padding: 1.5rem 1rem;
    }

    .cta-orange h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .cta-categories {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .cta-category {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }

    .cta-orange img {
        width: 100%;
        height: auto;
        margin-bottom: 1rem;
    }

    .cta-orange .btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    .logo{
        font-size: 1.25rem;
    }
    .hero-text h1 {
        font-size: 1.5rem;
    }

    .section {
        padding: 2rem 0;
    }

    .section-title {
        font-size: 1.5rem;
    }


    .privacy-popup {
        width: 90%;
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }

    .hero-text h1 {
        font-size: 1.25rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.25rem;
    }
}
