 .contact-page {
            background-color: #000;
            color: #fff;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            min-height: 100vh;
            padding: 40px 20px;
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .contact-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #fff 0%, #999 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .contact-subtitle {
            font-size: 1.1rem;
            color: #ccc;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .contact-form-section {
            background: #111;
            padding: 40px;
            border-radius: 12px;
            border: 1px solid #333;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .contact-form-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 24px;
            color: #fff;
        }

        .contact-form-placeholder {
            background: #1a1a1a;
            border: 2px dashed #444;
            border-radius: 8px;
            padding: 60px 20px;
            text-align: center;
            color: #999;
            font-size: 1rem;
            line-height: 1.6;
        }

        .contact-info-section {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .contact-info-card {
            background: #111;
            padding: 30px;
            border-radius: 12px;
            border: 1px solid #333;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .contact-info-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .contact-info-icon {
            width: 24px;
            height: 24px;
            fill: #666;
        }

        .contact-address {
            color: #ccc;
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .contact-map-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #222;
            color: #fff;
            padding: 12px 20px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            border: 1px solid #444;
            transition: all 0.3s ease;
        }

        .contact-map-link:hover {
            background: #333;
            border-color: #555;
            color: #fff;
            text-decoration: none;
        }

        .contact-map-icon {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        .contact-social-links {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .contact-social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: #222;
            border-radius: 50%;
            border: 1px solid #444;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .contact-social-link:hover {
            background: #333;
            border-color: #555;
            transform: translateY(-2px);
        }

        .contact-social-icon {
            width: 22px;
            height: 22px;
            fill: #ccc;
            transition: fill 0.3s ease;
        }

        .contact-social-link:hover .contact-social-icon {
            fill: #fff;
        }

        @media (max-width: 768px) {
            .contact-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .contact-title {
                font-size: 2rem;
            }

            .contact-form-section,
            .contact-info-card {
                padding: 24px;
            }

            .contact-form-placeholder {
                padding: 40px 16px;
            }

            .contact-social-links {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .contact-page {
                padding: 20px 16px;
            }

            .contact-title {
                font-size: 1.75rem;
            }

            .contact-subtitle {
                font-size: 1rem;
            }

            .contact-form-section,
            .contact-info-card {
                padding: 20px;
            }
        }