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

body {
    font-family: "Kodchasan", sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    text-decoration: none;
}

@media (max-width: 576px) {
    .logo {
        margin: 0 auto;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #FFBC2B;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: #f8f9fa;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: #FFBC2B;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #e55a2b;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Services Section */
.services {
    padding: 110px 0 80px;
    background: #fff;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

.services-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 1;
    max-width: 350px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.3rem;
    margin: 20px 20px 10px;
    color: #333;
    text-align: center;
}

.service-card p {
    margin: 0 20px 20px;
    color: #666;
    line-height: 1.5;
    text-align: center;
}

/* Maintenance Section */
.maintenance {
    padding: 80px 0;
}

.maintenance h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.maintenance-subtitle {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFBC2B;
    margin-bottom: 15px;
}

.maintenance-description {
    text-align: center;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.steps-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 40px;

}

.step {
    text-align: center;
    width: calc((100% - 80px) / 3);
    display: flex;
    flex-direction: column;

}

.step-icon img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
}

.step p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Tips Section */
.tips {
    padding: 80px 0;
    background: #333;
    color: white;
}

.tips h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: white;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.tip-card {
    background: #444;
    padding: 30px;
    border-radius: 10px;
}

.tip-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #FFBC2B;
}

.tip-card p {
    color: #ccc;
    line-height: 1.5;
}

.cta-section {
    text-align: center;
}

/* Footer */
footer {
    background: #ccc;
    color: #222;
    padding: 40px 0;
    text-align: center;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #222;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #FFBC2B;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: white;
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-popup.show {
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.cookie-btn.accept {
    background: #FFBC2B;
    color: white;
}

.cookie-btn.accept:hover {
    background: #e55a2b;
}

.cookie-btn.decline {
    background: #666;
    color: white;
}

.cookie-btn.decline:hover {
    background: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .services-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .steps-grid {
        flex-direction: column;
        gap: 30px;
    }

    .step {
        width: 100%;
        max-width: 100%;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .services,
    .maintenance,
    .tips {
        padding: 90px 0 60px;
    }
    
    .services h2,
    .maintenance h2,
    .tips h2 {
        font-size: 2rem;
    }
}

.legal {
    padding: 100px 0 50px;
    min-height: 85vh;
}

.legal h2 { 
    font-size: 42px;
    font-style: normal;
    font-weight: 500;
    line-height: 115%;
    margin-bottom: 20px;
}

@media (max-width: 576px) {
    .legal h2 { 
        font-size: 28px;
    }
}


.legal p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 20px;
}

.legal ul {
    margin-bottom: 20px;
    margin-left: 20px;
}

.legal ul li {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

* {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; 
}