body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

.header {
    background: #1a1a2e;
    color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo h1 {
    font-size: 1.3rem;
    margin: 0;
}

.logo a {
    color: #fff;
    text-decoration: none;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-list a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.nav-list a:hover,
.nav-list a.active {
    border-color: #f5a623;
}

.hero {
    background: linear-gradient(rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 0.8)), url('../assets/pexels-allan-van-gasbeck-2159359500-36500444.jpg') center/cover no-repeat;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: #f5a623;
    color: #1a1a2e;
}

.btn-primary:hover {
    background: #e09000;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #1a1a2e;
}

.btn-outline {
    background: transparent;
    color: #1a1a2e;
    border: 2px solid #f5a623;
}

.btn-outline:hover {
    background: #f5a623;
    color: #1a1a2e;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.services-preview {
    padding: 80px 0;
    background: #f9f9f9;
}

.services-preview h2,
.why-choose-us h2,
.contact-form-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

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

.service-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.service-detail-image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.about-image img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.services-content .service-item img {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.intro-image {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px;
    display: block;
}

.service-card h3 {
    padding: 20px 20px 10px;
    margin: 0;
    font-size: 1.3rem;
}

.service-card p {
    padding: 0 20px;
    color: #666;
    margin: 0;
}

.service-card .btn {
    margin: 20px;
}

.why-choose-us {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 30px;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.feature p {
    color: #666;
}

.cta-section {
    background: #1a1a2e;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-content p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-form-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f5a623;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input {
    width: auto;
    margin-top: 5px;
}

.form-checkbox label {
    font-size: 0.9rem;
    color: #666;
}

.form-checkbox a {
    color: #f5a623;
}

.page-header {
    background: linear-gradient(rgba(26, 26, 46, 0.85), rgba(26, 26, 46, 0.85)), url('../assets/pexels-optical-chemist-340351297-36772477.jpg') center/cover no-repeat;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-header p {
    opacity: 0.9;
    font-size: 1.1rem;
}

.about-intro,
.values-section {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.about-text h3,
.values-section h3,
.what-we-do h3,
.commitment-section h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.what-we-do,
.services-intro {
    padding: 80px 0;
    background: #f9f9f9;
}

.services-content .service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.services-content .service-item.reverse {
    direction: rtl;
}

.services-content .service-item.reverse > * {
    direction: ltr;
}

.services-content .service-item img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.service-item-text h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.commitment-section {
    padding: 80px 0;
}

.commitment-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.commitment-list {
    text-align: left;
    display: inline-block;
    margin: 30px 0;
}

.commitment-list li {
    margin-bottom: 10px;
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item h4 {
    margin-bottom: 5px;
    color: #1a1a2e;
}

.contact-item a {
    color: #f5a623;
    text-decoration: none;
}

.hours-highlight {
    color: #f5a623;
    font-weight: 600;
}

.map-section {
    padding: 0 0 80px;
}

.map-section h3 {
    margin-bottom: 20px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
}

.emergency-cta {
    padding: 60px 0;
    background: #1a1a2e;
}

.cta-box {
    text-align: center;
    color: #fff;
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.cta-box p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.service-detail {
    padding: 80px 0;
}

.service-detail.alt-bg {
    background: #f9f9f9;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-detail-content.reverse {
    direction: rtl;
}

.service-detail-content.reverse > * {
    direction: ltr;
}

.service-detail-image img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.service-detail-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.service-detail-text ul {
    list-style: none;
    padding: 0;
}

.service-detail-text li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.service-detail-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f5a623;
    font-weight: bold;
}

.services-cta {
    padding: 80px 0;
    background: #1a1a2e;
    color: #fff;
    text-align: center;
}

.services-cta h2 {
    margin-bottom: 15px;
}

.services-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.business-model-intro {
    padding: 80px 0;
}

.model-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.model-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.model-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.model-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.model-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.model-card ul {
    padding-left: 20px;
}

.model-card li {
    margin-bottom: 8px;
}

.website-purpose {
    padding: 80px 0;
}

.purpose-list {
    padding-left: 20px;
}

.purpose-list li {
    margin-bottom: 10px;
}

.service-area {
    padding: 80px 0;
    background: #f9f9f9;
    text-align: center;
}

.service-area h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.area-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
}

.area-item h4 {
    margin-bottom: 10px;
    color: #f5a623;
}

.privacy-note {
    padding: 80px 0;
}

.note-box {
    background: #fff8e7;
    padding: 40px;
    border-radius: 10px;
    border-left: 4px solid #f5a623;
}

.note-box h3 {
    margin-bottom: 15px;
}

.note-box a {
    color: #f5a623;
}

.footer {
    background: #1a1a2e;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #f5a623;
}

.footer-section address {
    font-style: normal;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #f5a623;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.copyright {
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 0.85rem;
    opacity: 0.7;
    max-width: 800px;
    margin: 0 auto;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    display: none;
}

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

.cookie-banner-text {
    flex: 1;
    min-width: 280px;
}

.cookie-banner-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.cookie-banner-buttons .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.cookie-banner-buttons .btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cookie-banner-buttons .btn-secondary:hover {
    background: #fff;
    color: #1a1a2e;
}

.cookie-modal-buttons .btn-secondary:hover,
.cookie-modal-footer .btn-secondary:hover {
    background: #f5a623;
    color: #1a1a2e;
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal-content {
    background: #fff;
    border-radius: 10px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-modal-header {
    background: #1a1a2e;
    color: #fff;
    padding: 20px;
    border-radius: 10px 10px 0 0;
}

.cookie-modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.cookie-modal-body {
    padding: 20px;
}

.cookie-category {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-category-header h4 {
    margin: 0;
    font-size: 1rem;
    color: #1a1a2e;
}

.cookie-category-header .always-on {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
}

.cookie-category p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 26px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 26px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: #f5a623;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    background-color: #999;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 0 0 10px 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.cookie-modal-footer .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        text-align: center;
    }

    .nav-list {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 15px;
        gap: 15px;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero {
        padding: 60px 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .about-content,
    .services-content .service-item,
    .service-detail-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .services-content .service-item.reverse {
        direction: ltr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .cookie-banner-buttons {
        justify-content: center;
    }

    .cookie-modal-content {
        margin: 10px;
    }

    .cookie-modal-footer {
        flex-direction: column;
    }

    .cookie-modal-footer .btn {
        width: 100%;
    }
}
