 /* Apple Minimalist Design System */
        :root {
            --white: #ffffff;
            --black: #000000;
            --gray-50: #f9f9f9;
            --gray-100: #f5f5f5;
            --gray-200: #e5e5e5;
            --gray-400: #a3a3a3;
            --gray-600: #525252;
            --gray-900: #171717;
            --accent: #007AFF;
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--black);
            background: var(--white);
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
        }

        /* Page Header */
        .page-header {
            padding: 40px 24px 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .breadcrumb {
            font-size: 14px;
            color: var(--gray-600);
            margin-bottom: 16px;
        }

        .breadcrumb a {
            color: var(--gray-600);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .breadcrumb a:hover {
            color: var(--black);
        }

        .page-title {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 700;
            color: var(--black);
            margin: 0 0 16px 0;
            letter-spacing: -0.02em;
            line-height: 1.1;
        }

        .page-subtitle {
            font-size: 1.1rem;
            color: var(--gray-600);
            margin: 0;
            line-height: 1.5;
        }

        /* Contact Section */
        .contact-section {
            padding: 40px 24px;
            background: var(--gray-50);
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
        }

        /* Contact Form */
        .contact-form-wrapper {
            background: var(--white);
            border-radius: 12px;
            padding: 24px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            border: 1px solid var(--gray-200);
        }

        .form-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--black);
        }

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

        .form-label {
            display: block;
            font-size: 14px;
            font-weight: 500;
            color: var(--black);
            margin-bottom: 8px;
        }

        .form-input,
        .form-textarea,
        .form-select {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--gray-200);
            border-radius: 8px;
            font-size: 15px;
            font-family: inherit;
            background: var(--white);
            color: var(--black);
            transition: all 0.2s ease;
        }

        .form-input:focus,
        .form-textarea:focus,
        .form-select:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
        }

        .form-textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-submit {
            background: var(--accent);
            color: var(--white);
            padding: 16px 32px;
            border: none;
            border-radius: 25px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
            width: 100%;
        }

        .form-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0, 122, 255, 0.4);
        }

        /* Form Message Styles */
        .form-message {
            margin-top: 16px;
            padding: 12px 16px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            text-align: center;
            transition: all 0.3s ease;
        }

        .form-message.success {
            background: #f0f9f0;
            color: #155724;
            border: 1px solid #d4edda;
        }

        .form-message.error {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }

        /* Button Loading State */
        .btn-loading {
            color: inherit;
        }

        /* Contact Info */
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .info-card {
            background: var(--white);
            border-radius: 12px;
            padding: 24px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
            border: 1px solid var(--gray-200);
            transition: all 0.2s ease;
        }

        .info-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }

        .info-icon {
            width: 48px;
            height: 48px;
            background: var(--gray-100);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin-bottom: 16px;
        }

        .info-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--black);
        }

        .info-text {
            font-size: 16px;
            color: var(--gray-600);
            line-height: 1.5;
        }

        .info-link {
            color: var(--accent);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .info-link:hover {
            color: var(--black);
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 24px;
        }

        .contact-item:last-child {
            margin-bottom: 0;
        }





        /* Responsive */
        @media (max-width: 768px) {
            .contact-container {
                grid-template-columns: 1fr;
                gap: 48px;
            }
            
            .contact-form-wrapper {
                padding: 32px 24px;
            }
            
            
            .contact-section {
                padding: 60px 24px;
            }
            
        }

        @media (max-width: 480px) {
            
            .form-submit {
                padding: 14px 28px;
                font-size: 15px;
            }
        }