
        header {
            background: #000;
            color: #fff;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .contact-section {
            padding: 0px 20px;
            background: #000;
            color: #fff;
        }

        .contact-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            align-items: center;
            justify-content: space-between;
        }

        .contact-info {
            flex: 1;
            min-width: 300px;
        }

        .contact-info h3 {
            font-size: 40px;
            margin-bottom: 10px;
        }

        .contact-info p {
            margin-bottom: 15px;
            font-size: large;
        }

        .contact-image {
            flex: 1;
            text-align: center;
        }

        .contact-image img {
            max-width: 100%;
            border-radius: 8px;
        }

        .divider {
            height: 2px;
            background: linear-gradient(90deg, transparent 0%, #d4af37 50%, transparent 100%);
            margin: 40px 0;
            opacity: 0.7;
        }

        @media (max-width: 768px) {
            .contact-container {
                flex-direction: column;
                text-align: center;
            }
        }
