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

body {
    font-family: 'Noto Sans', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a2e;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #2196F3;
    color: #fff;
}

.cookie-btn.accept:hover {
    background-color: #1976D2;
}

.cookie-btn.decline {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.cookie-btn.decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Header */
header {
    background-color: #0d1b2a;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
}

.contact-btn {
    background-color: #2196F3;
    color: #fff;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: #1976D2;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(13, 27, 42, 0.85), rgba(13, 27, 42, 0.85)), url('./images/hero.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 120px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-description {
    font-size: 16px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-button {
    display: inline-block;
    background-color: #2196F3;
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #1976D2;
}

/* Stand Beside Section */
.stand-beside {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.stand-beside h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #0d1b2a;
}

.services-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 250px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

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

.service-card h3 {
    font-size: 16px;
    font-weight: 700;
    padding: 20px 20px 10px;
    color: #0d1b2a;
    text-transform: uppercase;
}

.service-card p {
    font-size: 14px;
    padding: 0 20px 20px;
    color: #555;
    line-height: 1.6;
}

/* Working Feels Section */
.working-feels {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.working-feels h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #0d1b2a;
}

.section-description {
    font-size: 16px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #555;
}

/* Property Checks Section */
.property-checks {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.property-checks h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #0d1b2a;
}

.checks-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.check-card {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.check-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.check-card h3 {
    font-size: 16px;
    font-weight: 700;
    padding: 20px 20px 10px;
    color: #0d1b2a;
    text-transform: uppercase;
}

.check-card p {
    font-size: 14px;
    padding: 0 20px 20px;
    color: #555;
    line-height: 1.6;
}

/* Tangible Outputs Section */
.tangible-outputs {
    padding: 80px 0;
    background-color: #fff;
}

.tangible-outputs h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #0d1b2a;
}

.outputs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.output-item {
    flex: 1;
    min-width: 250px;
    padding: 25px;
    background-color: #f8f9fa;
    border-left: 4px solid #2196F3;
}

.output-item h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0d1b2a;
    text-transform: uppercase;
}

.output-item p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Services Compass Section */
.services-compass {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.services-compass h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #0d1b2a;
}

.compass-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.compass-card {
    flex: 1;
    min-width: 250px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.compass-card h3 {
    font-size: 16px;
    font-weight: 700;
    padding: 20px 20px 10px;
    color: #0d1b2a;
    text-transform: uppercase;
}

.compass-card p {
    font-size: 14px;
    padding: 0 20px 20px;
    color: #555;
    line-height: 1.6;
}

/* Path Decision Section */
.path-decision {
    padding: 80px 0;
    background-color: #fff;
}

.path-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.path-text {
    flex: 1;
}

.path-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #0d1b2a;
}

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

.stages-list li {
    font-size: 15px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

.stages-list strong {
    color: #0d1b2a;
    font-weight: 600;
}

.path-image {
    flex: 1;
}

.path-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Common Traps Section */
.common-traps {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.common-traps h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #0d1b2a;
}

.traps-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.trap-card {
    flex: 1;
    min-width: 300px;
    max-width: calc(33.333% - 20px);
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.trap-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.trap-card h3 {
    font-size: 15px;
    font-weight: 700;
    padding: 20px 20px 10px;
    color: #0d1b2a;
    text-transform: uppercase;
}

.trap-card p {
    font-size: 14px;
    padding: 0 20px 20px;
    color: #555;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #0d1b2a;
    color: #fff;
}

.contact-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-description {
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 50px;
    color: rgba(255, 255, 255, 0.9);
}

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

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 4px;
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form textarea {
    resize: vertical;
    margin-bottom: 20px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #2196F3;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #1976D2;
}

/* Footer */
footer {
    background-color: #000;
    color: rgba(255, 255, 255, 0.7);
    padding: 40px 0;
    text-align: center;
}

.footer-address,
.footer-phone,
.footer-email {
    font-size: 14px;
    margin-bottom: 10px;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-copyright {
    font-size: 13px;
    margin-top: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero-description {
        font-size: 14px;
    }

    .stand-beside h2,
    .working-feels h2,
    .property-checks h2,
    .tangible-outputs h2,
    .services-compass h2,
    .common-traps h2,
    .contact-section h2 {
        font-size: 28px;
    }

    .services-grid,
    .checks-grid,
    .outputs-grid,
    .compass-grid,
    .traps-grid {
        flex-direction: column;
    }

    .service-card,
    .check-card,
    .output-item,
    .compass-card,
    .trap-card {
        max-width: 100%;
        min-width: 100%;
    }

    .path-content {
        flex-direction: column;
    }

    .path-text h2 {
        font-size: 28px;
    }

    .form-row {
        flex-direction: column;
    }

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

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

    .hero {
        padding: 80px 0;
    }

    .stand-beside,
    .working-feels,
    .property-checks,
    .tangible-outputs,
    .services-compass,
    .path-decision,
    .common-traps,
    .contact-section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 16px;
    }

    .contact-btn {
        padding: 8px 20px;
        font-size: 14px;
    }

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

    .cta-button {
        padding: 12px 25px;
        font-size: 14px;
    }

    .cookie-btn {
        padding: 8px 20px;
        font-size: 13px;
    }
}