        .about-content {
            max-width: 1750px;
            margin: 0 auto;
            text-align: left;
        }

        .section-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #222;
            margin-bottom: 30px;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-title::after {
            content: "";
            display: block;
            width: 60px;
            height: 3px;
            background: #8a7000ff;
            margin: 12px auto 0;
            border-radius: 2px;
        }

        .about-content p {
            font-size: 1.05rem;
            color: #444;
            line-height: 1.75;
            margin-bottom: 20px;
        }

        .about-content strong {
            color: #222;
            font-weight: 600;
        }

        .about-content abbr {
            text-decoration: none;
            border-bottom: 1px dotted #666;
            cursor: help;
        }

        .about-footer {
            margin-top: 40px;
        }

        .about-chairman {
            font-size: 1rem;
            color: #333;
            line-height: 1.6;
        }

        .about-chairman .title {
            display: block;
            font-weight: 600;
            color: #555;
            margin-bottom: 5px;
        }

        .about-chairman strong {
            font-size: 1.25rem;
            font-weight: 700;
            color: #000000ff;
        }

        .about-chairman .position {
            font-size: 0.95rem;
            color: #666;
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 1.8rem;
            }

            .about-content p {
                font-size: 1rem;
            }
        }

        .contact-page {
            font-family: 'Poppins', sans-serif;
            color: #333;
            background: #f9f9f9;
            padding: 50px 20px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-header .title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #222;
            margin-bottom: 10px;
        }

        .section-header .subtitle {
            font-size: 1rem;
            color: #555;
        }

        .contact-wrapper {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
            justify-content: center;
        }

        /* Form */
        .contact-form {
            flex: 1 1 350px;
            padding: 25px;
            border-radius: 5px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .contact-form input,
        .contact-form textarea {
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 0.95rem;
            width: 100%;
            resize: none;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: #ba9863;
        }

        .contact-form button {
            background: #ba9863;
            color: #fff;
            border: none;
            padding: 12px;
            border-radius: 6px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s;
        }

        .contact-form button:hover {
            background: #5f431cff;
        }

        .contact-info {
            flex: 1 1 350px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .info-details h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .info-details p {
            font-size: 0.95rem;
            margin-bottom: 6px;
        }

        .info-details i {
            color: #0b0b0cff;
            margin-right: 6px;
        }

        .map-container iframe {
            width: 100%;
            height: 474px;
            border: none;
            border-radius: 5px;
        }

        @media (max-width: 768px) {
            .contact-wrapper {
                flex-direction: column;
            }
        }


        .modern-hero {
            position: relative;
            width: 100%;
            height: 90vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .modern-hero img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            top: 0;
            left: 0;
            z-index: 1;
        }

        .modern-hero-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.55);
            z-index: 2;
        }

        .modern-hero-content {
            position: relative;
            z-index: 3;
            max-width: 700px;
            padding: 30px 20px;
            color: #fff;
            border-radius: 15px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            animation: fadeInUp 1.2s ease;
        }

        .modern-hero-content h1 {
            color: #cca156ff;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .modern-hero-content p {
            font-size: 1.15rem;
            color: white;
            font-weight: 300;
            margin-bottom: 1.5rem;
        }

        .modern-btn {
            display: inline-block;
            padding: 12px 28px;
            background: #ac8c54ad;
            color: #fff;
            font-size: 1rem;
            font-weight: 500;
            border-radius: 5px;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            z-index: 4;
            position: relative;
        }

        .modern-btn:hover {
            background: #a8854dff;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .modern-hero {
                height: 70vh;
            }

            .modern-hero-content h1 {
                font-size: 1.8rem;
            }

            .modern-hero-content p {
                font-size: 1rem;
            }

            .modern-btn {
                padding: 10px 22px;
                font-size: 0.95rem;
            }
        }


        .about-us {
            padding: 80px 20px;
            background: #fafafa;
            font-family: 'Inter', sans-serif;
        }

        .about-grid {
            display: flex;
            align-items: center;
            gap: 50px;
            flex-wrap: wrap;
        }

        .about-image {
            flex: 1 1 450px;
            overflow: hidden;
            border-radius: 12px;
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
            transition: transform 0.4s ease;
        }

        .about-image img:hover {
            transform: scale(1.03);
        }

        .about-content {
            flex: 1 1 450px;
            max-width: 600px;
        }

        .about-content h2 {
            font-size: 2.2rem;
            font-weight: 700;
            color: #000000ff;
            margin-bottom: 20px;
        }

        .about-content p {
            font-size: 1rem;
            color: #555555;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .about-values {
            list-style: disc;
            padding-left: 20px;
            margin-bottom: 30px;
            color: #444444;
        }

        .about-values li {
            font-weight: 500;
            margin-bottom: 12px;
            font-size: 1rem;
        }

        @media (max-width: 768px) {
            .about-grid {
                flex-direction: column;
                text-align: center;
                gap: 30px;
            }

            .about-content {
                max-width: 100%;
            }

            .about-image {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .about-content h2 {
                font-size: 1.6rem;
            }

            .about-content p,
            .about-values li {
                font-size: 0.95rem;
            }
        }

        .sektors {
            padding: 60px 20px;
            background: #f9f9f9;
            text-align: center;
        }

        .sektors h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #ac8d53;
            margin-bottom: 50px;
        }

        .sektors .grid {
            display: flex;
            justify-content: space-between;
            gap: 30px;
            flex-wrap: wrap;
        }

        .sector-box {
            background: #fff;
            flex: 1 1 300px;
            padding: 30px 20px;
            border-radius: 12px;
            border: 2px solid #ac8d53;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .sector-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            border-color: #8c6f40;
        }

        .sector-icon {
            width: 60px;
            height: 60px;
            margin-bottom: 20px;
        }

        .sector-box h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #444;
        }

        .sector-box p {
            font-size: 1rem;
            color: #555;
            font-weight: 300;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .sektors .grid {
                flex-direction: column;
                gap: 20px;
            }
        }

        .projects-grid {
            display: grid;
            gap: 25px;
        }

        .projects-grid.three-or-more {
            grid-template-columns: repeat(3, 1fr);
        }

        .projects-grid.two-projects {
            grid-template-columns: repeat(2, 1fr);
        }

        .projects-grid.one-project {
            grid-template-columns: 1fr;
        }

        .project-card {
            display: block;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            background-color: #fff;
            text-decoration: none;
            color: inherit;
        }

        .project-card:hover {
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .project-image img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

        .project-info {
            padding: 15px 20px;
            text-align: left;
        }

        .project-date {
            font-size: 0.85rem;
            color: #777;
            display: block;
            margin-bottom: 5px;
        }

        .project-info h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 0;
            color: #222;
        }

        @media (max-width: 992px) {
            .projects-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .projects-grid {
                grid-template-columns: 1fr;
            }

            .project-image img {
                height: 180px;
            }
        }