* {
    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-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.top-header {
    background-color: #f8f8f8;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section a {
    display: inline-block;
    text-decoration: none;
}

.logo-section img {
    height: 60px;
    width: auto;
}

.contact-info {
    font-size: 13px;
    color: #666;
}


.main-nav {
    background-color: #222;
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff6b35;
}

/* Checkbox Toggle */
.nav-toggle {
    display: none;
}

.menu-label {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    transition: 0.3s;
}

#nav-toggle:checked ~ .menu-label .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

#nav-toggle:checked ~ .menu-label .bar:nth-child(2) {
    opacity: 0;
}

#nav-toggle:checked ~ .menu-label .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}


.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('home2.jpg') center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #ff6b35;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #fff;
}


.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #ff6b35;
    color: #fff;
}

.btn-primary:hover {
    background-color: #e55a24;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #ddd;
    color: #333;
    border: 1px solid #999;
}

.btn-secondary:hover {
    background-color: #ff6b35;
    color: #fff;
}

.content-section {
    padding: 60px 0;
    text-align: center;
}

.content-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #222;
}

.content-section p {
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.service-card {
    background: #f9f9f9;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #222;
}

.service-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.service-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 15px;
}

.service-card ul li {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

.service-price {
    font-size: 16px;
    font-weight: 600;
    color: #ff6b35;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

/* Pricing Table */
.pricing-section {
    padding: 60px 0;
}

.pricing-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    color: #222;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.pricing-table thead {
    background-color: #222;
    color: #fff;
}

.pricing-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.pricing-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

.pricing-table tbody tr:hover {
    background-color: #f9f9f9;
}

.footer {
    background-color: #222;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-info h2,
.footer-links h2,
.footer-social h2 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #ff6b35;
}

.footer-info p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 8px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ff6b35;
}

.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icons a {
    display: inline-flex;
    text-decoration: none;
}

    .social-icons img {
        width: 25px;
        height: auto;
        display: block;
    }


.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 13px;
    color: #999;
}

/* RESPONSIVE - TABLET (768px)*/
@media (max-width: 768px) {
    .top-header .container {
        flex-direction: column;
        gap: 10px;
    }

    .contact-info {
        font-size: 12px;
    }

    .menu-label {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #1a1a1a;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
    }

    #nav-toggle:checked ~ .nav-links {
        max-height: 500px;
    }

    .nav-links li {
        padding: 15px 0;
        border-bottom: 1px solid #333;
        text-align: center;
    }

    .hero {
        height: 300px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .content-section {
        padding: 40px 0;
    }

    .content-section h2 {
        font-size: 24px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        padding: 40px 0;
    }

    .pricing-table {
        font-size: 13px;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 10px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* RESPONSIVE - MOBILE (480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .top-header {
        padding: 10px 0;
    }

    .logo-section img {
        height: 50px;
    }

    .contact-info {
        font-size: 11px;
    }

    .nav-links li {
        padding: 12px 0;
    }

    .nav-links a {
        font-size: 14px;
    }

    .hero {
        height: 250px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .content-section h2 {
        font-size: 20px;
    }

    .service-card {
        padding: 20px 15px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 13px;
    }

    .service-card ul {
        font-size: 13px;
    }

    .service-card ul li {
        margin-bottom: 8px;
    }

    .pricing-table {
        font-size: 12px;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 8px;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-info h2,
    .footer-links h2,
    .footer-social h2 {
        font-size: 14px;
    }

    .footer-info p {
        font-size: 12px;
    }

    .footer-links a {
        font-size: 12px;
    }
}
