:root {
    --dark-blue: #2c3e50;
    --gold: #c5a059;
    --white: #ffffff;
    --light-grey: #f8f9fa;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Bar */
.navbar {
    padding: 20px 0;
    border-bottom: 1px solid #eaeaea;
}

.nav-content {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 240px;
    width: auto;
}

.logo-text h1 {
    margin: 0;
    font-size: 4.8rem;
    color: var(--dark-blue);
    letter-spacing: 1px;
}

.logo-text h1 span {
    color: var(--gold);
}

.logo-text p {
    margin: 0;
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--dark-blue);
}

/* Hero Section */
.hero {
    padding: 60px 0;
    text-align: center;
}

.hero h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 10px;
    border-bottom: 3px solid var(--gold);
    display: inline-block;
    padding-bottom: 5px;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
    display: block;
}

.subtitle .initial {
    color: var(--gold);
    font-weight: 800;
}

.description {
    max-width: 850px;
    margin: 0 auto 40px;
    font-size: 1.05rem;
    color: #666;
}

.collage-img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Grid Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--gold);
}

.feature-info h3 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--dark-blue);
}

.feature-info p {
    margin: 5px 0 0;
    color: #777;
    font-size: 0.95rem;
}

/* CTA Button */
.cta {
    text-align: center;
    margin-bottom: 80px;
}

.btn-primary {
    background: linear-gradient(180deg, #4b6b8b 0%, #2c3e50 100%);
    color: white;
    border: 2px solid white;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

/* Legal Text */
.legal {
    max-width: 980px;
    background: var(--light-grey);
    border: 1px solid #e4e7eb;
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 70px;
}

.legal h4 {
    margin: 0 0 16px;
    font-size: 1.35rem;
    color: var(--dark-blue);
}

.legal p {
    margin: 0 0 16px;
    font-size: 1rem;
    line-height: 1.75;
    color: #2f3f50;
}

.legal p:last-child {
    margin-bottom: 0;
}

/* Carousel */
.latest-content {
    text-align: center;
    padding-bottom: 80px;
}

.latest-content h4 {
    font-size: 0.9rem;
    color: #999;
    letter-spacing: 3px;
    margin-bottom: 35px;
    font-weight: 700;
}

.carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 10px;
    scrollbar-width: none; /* Firefox */
}

.carousel::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.slide {
    flex: 0 0 auto;
    width: 220px;
    height: 140px;
    background: #eee;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-btn {
    background: transparent;
    border: none;
    font-size: 2.5rem;
    color: #3498db;
    cursor: pointer;
    transition: color 0.2s;
}

.nav-btn:hover {
    color: var(--dark-blue);
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: white;
    padding: 50px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.f-logo {
    height: 45px;
    filter: brightness(0) invert(1);
}

.f-text {
    font-size: 0.85rem;
    line-height: 1.4;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.85rem;
    font-weight: 700;
}

.socials a {
    color: white;
    font-size: 1.6rem;
    margin-left: 20px;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .features { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; text-align: center; }
    .footer-left { flex-direction: column; }
}