body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background: linear-gradient(120deg, #e3f0ff 0%, #f0f7ff 100%);
    color: #1a2233;
    line-height: 1.6;
}

header {
    background: linear-gradient(90deg, #3a8dde 0%, #6fd6ff 100%);
    box-shadow: 0 2px 12px rgba(58,141,222,0.08);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

nav a {
    text-decoration: none;
    color: #2563eb;
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: #3a8dde;
}

.hero {
    background: linear-gradient(120deg, #3a8ddecc 0%, #6fd6ffcc 100%), url('https://source.unsplash.com/random/1600x900/?office,work,technology') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 6rem 1rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: 300;
}

main {
    padding: 2rem 0;
}

#branches {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 1.2rem;
    width: 100%;
    margin: 0 auto;
    flex-wrap: nowrap;
}

.branch {
    background: linear-gradient(135deg, #e3f0ff 0%, #d0e6ff 100%);
    padding: 1rem 0.7rem;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(58,141,222,0.10), 0 1px 4px rgba(111,214,255,0.08);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    min-width: 160px;
    max-width: 180px;
    flex: 1 1 0;
}

.branch:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 16px 40px rgba(58,141,222,0.16), 0 2px 8px rgba(111,214,255,0.10);
}

.branch i {
    font-size: 2rem;
    color: #2563eb;
    margin-bottom: 0.5rem;
    background: #e3f0ff;
    border-radius: 50%;
    padding: 0.4rem;
    box-shadow: 0 2px 8px #3a8dde33;
}

.branch h2 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: #2563eb;
    font-size: 0.85rem;
    line-height: 1.3;
    margin-bottom: 0;
}

footer {
    text-align: center;
    padding: 1.5rem 0;
    background: linear-gradient(90deg, #3a8dde 0%, #6fd6ff 100%);
    color: #e3f0ff;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}
