/* Contacts page styles */
        .container {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }

        .page-title {
            text-align: center;
            margin-bottom: 30px;
            color: #262829;
        }

        .section {
            background: white;
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .section-title {
            color: #262829;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #FCCC0F;
        }

        .offices {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 20px;
        }

        .office-card {
            flex: 1;
            min-width: 300px;
            background: #f9f9f9;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .office-title {
            color: #262829;
            margin-bottom: 15px;
        }

        .office-address {
            margin-bottom: 15px;
        }

        .office-note {
            font-style: italic;
            color: #666;
        }

        .leader-info {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: center;
        }

        .leader-text {
            flex: 2;
            min-width: 300px;
        }

        .leader-photo {
            flex: 1;
            min-width: 200px;
            height: 250px;
            background-color: #eee;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            overflow: hidden;
        }

        .legal-section {
            margin-top: 30px;
        }

        .legal-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .legal-card {
            background: #f9f9f9;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .legal-card h4 {
            color: #262829;
            margin-bottom: 15px;
        }

        .bank-details {
            background: #f0f0f0;
            padding: 15px;
            border-radius: 5px;
            font-family: monospace;
            font-size: 14px;
            margin: 10px 0;
        }

        .map-container {
            height: 300px;
            margin-top: 20px;
            border-radius: 8px;
            overflow: hidden;
        }

        .buttons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: #262829;
            color: #FCCC0F;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background-color: #FCCC0F;
            color: #262829;
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid #262829;
            color: #262829;
        }

        .btn-outline:hover {
            background-color: #262829;
            color: #FCCC0F;
        }
