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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #27ae60;
    color: white;
}

.btn-accept:hover {
    background-color: #229954;
}

.btn-reject {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.main-header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    font-family: 'Arial', sans-serif;
}

.main-nav {
    display: flex;
    gap: 32px;
}

.main-nav a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.main-nav a:hover {
    color: #3498db;
}

.ad-notice {
    font-size: 11px;
    color: #7f8c8d;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-magazine {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-container {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #34495e;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.hero-overlay {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 900px;
    text-align: center;
    color: white;
    padding: 0 40px;
}

.hero-overlay h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.7);
}

.hero-subtext {
    font-size: 20px;
    line-height: 1.5;
    opacity: 0.95;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.6);
}

.intro-section {
    padding: 80px 40px;
    background-color: #fff;
}

.magazine-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.content-main {
    flex: 2;
}

.content-main h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #2c3e50;
}

.content-main p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #34495e;
}

.content-main img {
    width: 100%;
    height: auto;
    margin: 40px 0;
    object-fit: cover;
    background-color: #ecf0f1;
}

.content-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card,
.cta-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-left: 4px solid #3498db;
}

.info-card h3,
.cta-card h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.stats-list {
    list-style: none;
}

.stats-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 16px;
    color: #34495e;
}

.stats-list li:last-child {
    border-bottom: none;
}

.cta-card p {
    font-size: 15px;
    margin-bottom: 20px;
    color: #7f8c8d;
}

.btn-cta {
    display: inline-block;
    padding: 12px 28px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: #2980b9;
}

.history-section {
    padding: 80px 40px;
    background-color: #ecf0f1;
}

.section-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.two-column-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.two-column-layout.reverse {
    flex-direction: row-reverse;
}

.column-left,
.column-right {
    flex: 1;
}

.column-left h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.column-left p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #34495e;
}

.column-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #bdc3c7;
}

.infrastructure-section {
    padding: 80px 40px;
    background-color: #fff;
}

.full-width-bg h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.feature-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.feature-item {
    flex: 1;
    background-color: #f8f9fa;
    padding: 0;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
}

.feature-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #95a5a6;
}

.feature-item h3 {
    font-size: 22px;
    margin: 24px 24px 16px;
    color: #2c3e50;
}

.feature-item p {
    font-size: 15px;
    padding: 0 24px 24px;
    color: #7f8c8d;
}

.services-preview {
    padding: 80px 40px;
    background-color: #34495e;
    color: white;
}

.services-preview h2 {
    font-size: 38px;
    margin-bottom: 20px;
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    opacity: 0.9;
}

.services-compact {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

.service-item {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.service-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #ecf0f1;
}

.service-item p {
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
    opacity: 0.85;
}

.price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.btn-service {
    display: inline-block;
    padding: 10px 24px;
    background-color: transparent;
    color: white;
    border: 2px solid white;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: white;
    color: #34495e;
}

.regional-section {
    padding: 80px 40px;
    background-color: #fff;
}

.port-list {
    list-style: none;
}

.port-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 15px;
    color: #34495e;
}

.port-list li:last-child {
    border-bottom: none;
}

.port-list strong {
    color: #2c3e50;
}

.form-section {
    padding: 80px 40px;
    background-color: #ecf0f1;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
    text-align: center;
}

.form-container > p {
    text-align: center;
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid #bdc3c7;
    background-color: #fff;
    font-family: 'Georgia', serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #27ae60;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #229954;
}

.sustainability-section {
    padding: 80px 40px;
    background-color: #fff;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.footer-column {
    flex: 1;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 20px;
    color: white;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #3498db;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.2);
    border-left: 4px solid #e74c3c;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    opacity: 0.85;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    opacity: 0.7;
}

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px;
    background-color: white;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.thanks-container h1 {
    font-size: 42px;
    color: #27ae60;
    margin-bottom: 24px;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 16px;
}

.thanks-container .btn-cta {
    margin-top: 30px;
}

@media (max-width: 1024px) {
    .magazine-grid,
    .two-column-layout,
    .feature-grid,
    .services-compact {
        flex-direction: column;
    }

    .hero-overlay h1 {
        font-size: 36px;
    }

    .content-main h2 {
        font-size: 30px;
    }

    .footer-content {
        flex-direction: column;
    }
}