:root {
            --primary: #0f172a;
            --primary-light: #1e293b;
            --accent: #3b82f6;
            --accent-hover: #2563eb;
            --text-primary: #0f172a;
            --text-secondary: #64748b;
            --bg-main: #ffffff;
            --bg-secondary: #f8fafc;
            --border: #e2e8f0;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', system-ui, sans-serif;
            background: var(--bg-secondary);
            color: var(--text-primary);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 16px;
        }
        
        /* Header */
        header {
            background: var(--bg-main);
            border-radius: 16px;
            padding: 32px 24px;
            margin-bottom: 24px;
            text-align: center;
            border: 1px solid var(--border);
        }
        
        .logo {
            height: 48px;
            width: auto;
            margin-bottom: 20px;
        }
        
        .company-title {
            font-size: 1.875rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
            letter-spacing: -0.025em;
        }

        .maps-icon {
            color: var(--accent);
            font-size: 1.125rem;
        }

        .map-section iframe {
            border-radius: 16px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
            width: 100%;
            height: 300px;
            text-align: center;
        }
        
        .company-tagline {
            font-size: 0.9375rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
            font-weight: 400;
        }
        
        /* Grid Layout */
        .content-grid {
            display: grid;
            gap: 24px;
            grid-template-columns: 1fr;
        }
        
        /* Card */
        .card {
            background: var(--bg-main);
            border-radius: 16px;
            padding: 28px 24px;
            border: 1px solid var(--border);
        }
        
        .section-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            letter-spacing: -0.025em;
        }
        
        .section-title i {
            color: var(--accent);
            font-size: 1.125rem;
        }
        
        .profile-text {
            font-size: 0.9375rem;
            color: var(--text-secondary);
            margin-bottom: 16px;
            line-height: 1.7;
        }
        
        .profile-text strong {
            color: var(--text-primary);
            font-weight: 600;
        }
        
        .highlight {
            color: var(--accent);
            font-weight: 600;
        }
        
        .profile-text ul {
            padding-left: 20px;
            margin-top: 12px;
        }
        
        .profile-text li {
            margin-bottom: 8px;
            color: var(--text-secondary);
        }
        
        /* Contact Items */
        .contact-intro {
            font-size: 0.9375rem;
            color: var(--text-secondary);
            margin-bottom: 24px;
        }
        
        .contact-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            padding: 16px;
            border-radius: 12px;
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
            color: inherit;
        }
        
        .contact-item:hover {
            border-color: var(--accent);
            background: var(--bg-main);
            transform: translateX(4px);
        }
        
        .contact-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            margin-right: 14px;
            flex-shrink: 0;
            color: white;
        }
        
        .contact-details {
            flex: 1;
        }
        
        .contact-name {
            font-weight: 600;
            color: var(--text-primary);
            font-size: 0.9375rem;
            margin-bottom: 2px;
        }
        
        .contact-value {
            color: var(--text-secondary);
            font-size: 0.875rem;
        }
        
        .contact-arrow {
            color: var(--text-secondary);
            font-size: 0.875rem;
            opacity: 0.5;
            transition: all 0.2s ease;
        }
        
        .contact-item:hover .contact-arrow {
            opacity: 1;
            transform: translateX(2px);
        }
        
        /* CTA Button */
        .cta-section {
            margin-top: 24px;
            padding-top: 24px;
            border-top: 1px solid var(--border);
            text-align: center;
        }
        
        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--accent);
            color: white;
            padding: 14px 28px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9375rem;
            transition: all 0.2s ease;
            border: none;
            cursor: pointer;
        }
        
        .cta-button:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
        }
        
        /* Footer */
        footer {
            text-align: center;
            padding: 32px 16px;
            margin-top: 32px;
            color: var(--text-secondary);
            font-size: 0.875rem;
        }
        
        .copyright {
            margin-top: 8px;
            opacity: 0.8;
        }
        
        /* Desktop Layout */
        @media (min-width: 768px) {
            .container {
                padding: 24px;
            }
            
            header {
                padding: 48px 32px;
                margin-bottom: 32px;
            }
            
            .logo {
                height: 56px;
                margin-bottom: 24px;
            }
            
            .company-title {
                font-size: 2.25rem;
            }
            
            .company-tagline {
                font-size: 1rem;
            }
            
            .content-grid {
                grid-template-columns: 1.5fr 1fr;
                gap: 32px;
            }
            
            .card {
                padding: 32px;
            }
            
            .section-title {
                font-size: 1.375rem;
            }
            
            .profile-text {
                font-size: 1rem;
            }
        }
        
        /* Large Desktop */
        @media (min-width: 1024px) {
            .container {
                padding: 32px;
            }
            
            .content-grid {
                grid-template-columns: 1.75fr 1fr;
            }
        }
        
        /* Small Mobile Optimization */
        @media (max-width: 480px) {
            .company-title {
                font-size: 1.5rem;
            }
            
            .company-tagline {
                font-size: 0.875rem;
            }
            
            .logo {
                height: 40px;
            }
            
            header {
                padding: 24px 20px;
            }
            
            .card {
                padding: 20px 16px;
            }
            
            .section-title {
                font-size: 1.125rem;
            }
            
            .contact-icon {
                width: 40px;
                height: 40px;
                font-size: 1.125rem;
            }
        }
        
        /* Color Classes */
        .icon-whatsapp { background: #25D366; }
        .icon-instagram { background: linear-gradient(45deg, #833AB4, #E1306C, #FCAF45); }
        .icon-email { background: #EA4335; }
        .icon-website { background: var(--accent); }
        .icon-phone { background: #10b981; }
        
        /* Smooth Transitions */
        * {
            transition: background-color 0.2s ease, border-color 0.2s ease;
        }
        
        /* Focus States for Accessibility */
        .contact-item:focus-visible,
        .cta-button:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }