* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #050505;
    color: #ffffff;
    font-family: 'Times New Roman', Times, serif;
    line-height: 1.6;
    font-size: 16px;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-tag {
    color: #cda250;
    font-family: Arial, sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.section-tag.center {
    text-align: center;
}

.gold-line {
    border: none;
    height: 2px;
    background: #cda250;
    width: 60px;
    margin: 15px 0 25px 0;
}

.gold-line.center {
    margin: 15px auto 40px auto;
}

.center-text {
    text-align: center;
    font-size: 2.2rem;
    font-weight: normal;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.85)), url('MGV-bg.png');
    background-size: cover;
    background-position: center;
    padding: 40px 0 100px 0;
    text-align: center;
    border-bottom: 1px solid #1a1a1a;
}

.lang-switch {
    text-align: right;
    padding: 0 40px;
}

.lang-switch a {
    color: #cda250;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
}

.main-logo {
    max-width: 380px;
    width: 100%;
    margin-bottom: 30px;
}

.hero-content h1 {
    font-size: 2.2rem;
    font-weight: normal;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.subtitle {
    color: #cda250;
    font-family: Arial, sans-serif;
    font-size: 0.95rem;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.hero-description {
    max-width: 650px;
    margin: 0 auto 40px auto;
    font-size: 1.1rem;
    color: #cccccc;
}

.btn-primary {
    display: inline-block;
    background-color: #cda250;
    color: #000000;
    text-decoration: none;
    padding: 12px 35px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 2px;
    border-radius: 2px;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background-color: #e5b865;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: #050505;
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 50px;
}

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: 2.5rem;
    font-weight: normal;
}

.text-block p {
    color: #cccccc;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.image-block {
    flex: 1;
}

.skyline-img {
    width: 100%;
    border-radius: 4px;
    filter: grayscale(100%);
    border: 1px solid #222;
}

/* Services Section */
.services-section {
    padding: 80px 0 100px 0;
    background-color: #0a0a0a;
    border-top: 1px solid #111;
}

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

.service-card {
    text-align: center;
    padding: 20px;
}

.service-card .icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #cda250;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: normal;
    margin-bottom: 12px;
    color: #ffffff;
}

.service-card p {
    color: #999999;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Footer Section */
.footer-section {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.9)), url('MGV-bg.png');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    border-top: 1px solid #cda250;
    position: relative;
}

.footer-split {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-left {
    flex: 1;
    min-width: 280px;
}

.footer-left h2 {
    font-size: 2rem;
    font-weight: normal;
    margin-bottom: 15px;
}

.footer-left p {
    color: #cccccc;
}

.footer-right {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: Arial, sans-serif;
}

.contact-item a {
    color: #ffffff;
    text-decoration: none;
}

.contact-item a:hover {
    color: #cda250;
}

.footer-logo-wrapper {
    width: 100%;
    text-align: right;
    margin-top: 20px;
}

.footer-logo {
    max-width: 120px;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .split-layout {
        flex-direction: column;
    }
}