:root {
    --primary: #fe6e04;
    --primary-light: #fe6e04;
    --primary-dark: #2980B9;
    --bg-dark: #0D4A65;
    --bg-light: #1E293B;
    --text-white: #000;
    --text-muted: #000;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-light) 100%); */

    /* padding: 40px 20px; */
    position: relative;
    overflow-x: hidden;
}




@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, 30px);
    }
}


.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 50px 60px;
    box-shadow: var(--glass-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

h1 {
    color: var(--text-white);
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

h1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
}

.section-group {
    /*! margin-bottom: 32px; */
}

.section-title {
    color: var(--primary-light);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 16px;
    opacity: 0.9;
}

.address-block p {
    color: var(--text-white);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 4px;
}

.info-row {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #fe6e04;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    color: var(--text-muted);
    font-size: 15px;
    /* min-width: 140px; */
    font-weight: 500;
}

.info-value {
    color: var(--text-white);
    font-size: 16px;
    font-weight: 400;
}

.info-value a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.info-value a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #fe6e04, transparent);
    margin: 15px 0;
}

.footer-note {
    /*! margin-top: 40px; */
    padding-top: 24px;
    border-top: 1px solid rgb(191, 227, 244);
    color: var(--text-muted);
    font-size: 14px;
    opacity: 0.7;
}

.footer-note a {
    color: var(--primary-light);
    text-decoration: none;
}

.footer-note a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .glass-card {
        padding: 35px 30px;
    }

    h1 {
        font-size: 32px;
    }

    .info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .info-label {
        min-width: auto;
    }
}