
        :root {
            --primary-color: #d32f2f;
            --primary-light: #f8d7da;
            --text-dark: #000000;
            --text-light: #6c757d;
            --white: #ffffff;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
        }
        body {
            background-color: var(--white);
            color: var(--text-dark);
            line-height: 1.6;
            padding: 2rem 0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        .contact-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            margin-bottom: 3rem;
        }
        .contact-title {
            font-size: 2.5rem;
            font-weight: bold;
            position: relative;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
        }
        .contact-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
        }
        .contact-subtitle {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 600px;
            margin-bottom: 2rem;
        }
        .contact-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            width: 100%;
            margin-bottom: 3rem;
        }
        .contact-card {
            background-color: var(--white);
            padding: 2rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .contact-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        }
        .card-icon {
            width: 60px;
            height: 60px;
            background-color: var(--primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
            font-size: 1.5rem;
        }
        .card-title {
            font-size: 1.25rem;
            font-weight: bold;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }
        .card-info {
            color: var(--text-light);
            margin-bottom: 0.5rem;
        }
        .card-link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .card-link:hover {
            color: #b22222;
            text-decoration: underline;
        }
        .working-hours {
            background-color: var(--primary-light);
            padding: 2rem;
            border-radius: 8px;
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
        }
        .hours-title {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }
        .hours-content {
            color: var(--text-dark);
            font-size: 1.05rem;
        }
        @media (max-width: 768px) {
            .contact-title {
                font-size: 2rem;
            }
            .contact-cards {
                grid-template-columns: 1fr;
            }
        }
    