/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #f5f5f5;
    background: 
        radial-gradient(circle at 20% 20%, rgba(139, 69, 19, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(160, 82, 45, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(101, 67, 33, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 25%, #2d2d2d 50%, #1a1a1a 75%, #0f0f0f 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Disclaimer */
.disclaimer {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border-bottom: 1px solid #3d3d3d;
    padding: 12px 0;
    text-align: center;
    font-size: 13px;
    color: #b8b8b8;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Header */
.header {
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 60px;
}

.logo {
    flex-shrink: 0;
    margin-right: 20px;
}

.logo a {
    font-size: 36px;
    font-weight: 200;
    color: #f5f5f5;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-family: 'Inter', sans-serif;
    transition: all 0.4s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    display: block;
}

.logo a:hover {
    color: #d4af37;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    transform: translateY(-1px);
}

.nav {
    display: flex;
    gap: 20px;
    flex: 1;
    justify-content: flex-end;
}

.nav a {
    color: #e8e8e8;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative;
    padding: 12px 20px;
    border-radius: 10px;
    background: rgba(60, 60, 60, 0.8);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav a:hover {
    color: #f5f5f5;
    background: rgba(80, 80, 80, 0.9);
    backdrop-filter: blur(20px);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.3);
}

/* Special styles for multi-line navigation buttons */
.nav a br {
    display: block;
    line-height: 1.2;
}

.nav a span {
    display: block;
    line-height: 1.1;
}

.cta-button {
    flex-shrink: 0;
    margin-left: 20px;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%);
    color: #1a1a1a;
    padding: 16px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 1px solid #d4af37;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 48px;
    width: fit-content;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #f4e4bc 0%, #d4af37 100%);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

/* Main Content */
.main {
    padding: 80px 0;
    min-height: 100vh;
    position: relative;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* Blog Post */
.blog-post {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px) saturate(180%);
    border-radius: 24px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.blog-post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 13px;
    color: #b8b8b8;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.post-title {
    font-size: 48px;
    font-weight: 200;
    color: #f8f8f8;
    margin-bottom: 35px;
    line-height: 1.1;
    letter-spacing: -1.5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
}

.post-intro {
    font-size: 20px;
    margin-bottom: 40px;
    color: #d0d0d0;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.3px;
}

/* Promotional Banner */
.promo-banner {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 28px;
    padding: 60px;
    margin: 50px 0;
    color: #f8f8f8;
    display: flex;
    align-items: center;
    gap: 50px;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(244, 228, 188, 0.04) 100%);
    pointer-events: none;
}

.promo-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.promo-content {
    display: flex;
    align-items: center;
    width: 100%;
}

.promo-text h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 15px;
    color: #d4af37;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.promo-image {
    position: relative;
    flex-shrink: 0;
}

.promo-image img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.promo-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
}

.btn-promo {
    background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
}

/* Table of Contents */
.table-of-contents {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin: 50px 0;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.table-of-contents::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.table-of-contents h3 {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #d4af37;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.table-of-contents ol {
    list-style: none;
    counter-reset: item;
}

.table-of-contents li {
    counter-increment: item;
    margin-bottom: 12px;
    padding-left: 35px;
    position: relative;
    display: flex;
    align-items: center;
}

.table-of-contents li:before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
    color: #d4af37;
    font-size: 16px;
    width: 25px;
    text-align: center;
}

.table-of-contents a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 300;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 0;
    line-height: 1.4;
    flex: 1;
}

.table-of-contents a:hover {
    color: #d4af37;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
    transform: translateX(10px);
}

/* Article Content */
.article-content {
    margin-top: 40px;
}

.article-content h2 {
    color: rgb(189, 188, 188);
    font-size: 28px;
    font-weight: 300;
    margin: 40px 0 20px 0;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

table th {
    background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%);
    color: #1a1a1a;
    padding: 20px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
}

table td {
    padding: 18px 16px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
}

table tr:last-child td {
    border-bottom: none;
}

table tr:nth-child(even) {
    background: rgba(212, 175, 55, 0.03);
}

table tr:hover {
    background: rgba(212, 175, 55, 0.08);
    transition: background 0.3s ease;
}

table a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

table a:hover {
    color: #b8941f;
    text-decoration: underline;
}

.article-content section {
    margin-bottom: 40px;
}

.article-content h2 {
    font-size: 24px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #20c997;
}

.article-content h3 {
    font-size: 20px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 10px;
    margin-top: 20px;
}

.article-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.article-content ul, .article-content ol {
    margin-bottom: 15px;
    padding-left: 25px;
}

.article-content li {
    margin-bottom: 8px;
}

/* Costs Table */
.costs-table {
    margin: 20px 0;
    overflow-x: auto;
}

.costs-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.costs-table th,
.costs-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.costs-table th {
    background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%);
    color: white;
    font-weight: bold;
}

.costs-table tr:hover {
    background-color: #f8f9fa;
}

/* FAQ */
.faq {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px) saturate(180%);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    padding: 25px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.faq h3 {
    color: #d4af37;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 18px;
    position: relative;
    z-index: 1;
}

.faq p {
    color: #2c2c2c;
    font-weight: 400;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky;
    top: 100px;
}

/* Search Box */
.search-box {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.search-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.search-input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 15px;
    background: transparent;
    color: #f5f5f5;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.search-input::placeholder {
    color: #b8b8b8;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.search-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: #d4af37;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    padding: 8px;
    border-radius: 6px;
}

.search-btn:hover {
    color: #f4e4bc;
    background: rgba(212, 175, 55, 0.1);
    transform: scale(1.1);
}

/* Promo Ad */
.promo-ad {
    background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
    border-radius: 10px;
    padding: 25px;
    color: white;
    position: relative;
    overflow: hidden;
}

.promo-ad h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.promo-ad p {
    font-size: 14px;
    margin-bottom: 15px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
}

.badge {
    background: white;
    color: #e91e63;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
}

.ad-image {
    position: absolute;
    right: -20px;
    bottom: -10px;
    opacity: 0.3;
}

.ad-image img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

/* Most Searched */
.most-searched {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.most-searched::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.most-searched h3 {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 25px;
    color: #d4af37;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.most-searched ul {
    list-style: none;
}

.most-searched li {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.most-searched li:hover {
    background: rgba(212, 175, 55, 0.05);
    border-radius: 8px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 -15px;
}

.most-searched li:last-child {
    border-bottom: none;
}

.most-searched .date {
    font-size: 13px;
    color: #b8b8b8;
    display: block;
    margin-bottom: 8px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.most-searched a {
    color: #e8e8e8;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
    transition: all 0.3s ease;
    display: block;
}

.most-searched a:hover {
    color: #d4af37;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
    transform: translateX(5px);
}


.btn-secondary {
    background: linear-gradient(135deg, #20c997 0%, #17a2b8 100%);
    color: white;
    padding: 16px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 48px;
    width: fit-content;
    border: 1px solid #20c997;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #1ba085 0%, #138496 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(32, 201, 151, 0.3);
}

/* Footer */
.footer {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 0 40px;
    margin-top: 100px;
    position: relative;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #d4af37;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #b8b8b8;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.footer-section a:hover {
    color: #d4af37;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
    transform: translateX(5px);
}

.footer-section p {
    color: #b8b8b8;
    margin-bottom: 8px;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 30px;
    color: #888;
    font-weight: 300;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    color: #d0d0d0;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-link:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
    color: #f8f8f8;
}

.contact-info p {
    margin-bottom: 8px;
    font-size: 14px;
}

.contact-info strong {
    color: #d4af37;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a {
    color: #b8b8b8;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.footer-links a:hover {
    color: #d4af37;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    color: #b8b8b8;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.contact-info p {
    margin-bottom: 8px;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.contact-info strong {
    color: #d4af37;
    font-weight: 500;
}

/* Legal Content Styles */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.legal-content h1 {
    font-size: 32px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 10px;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #b8b8b8;
    font-style: italic;
    margin-bottom: 40px;
}

.legal-content section {
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 24px;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #20c997;
}

.legal-content h3 {
    font-size: 20px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 10px;
    margin-top: 20px;
}

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-content ul, .legal-content ol {
    margin-bottom: 15px;
    padding-left: 25px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Contact Page Styles */
.contact-background {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 28px;
    padding: 60px;
    margin: 40px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(244, 228, 188, 0.02) 100%);
    pointer-events: none;
}

.contact-background::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 1;
}

.contact-content h1 {
    font-size: 48px;
    font-weight: 200;
    color: #f8f8f8;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.contact-intro {
    text-align: center;
    font-size: 20px;
    color: #d0d0d0;
    margin-bottom: 50px;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.3px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info-grid h2 {
    font-size: 28px;
    font-weight: 500;
    color: #d4af37;
    margin-bottom: 40px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    grid-column: 1 / -1;
}

.contact-item {
    padding: 25px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.contact-item p {
    margin-bottom: 8px;
    color: #2c2c2c;
    font-weight: 400;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}




.faq-section {
    margin-top: 80px;
    margin-bottom: 80px;
    padding: 0 20px;
}

.faq-section h2 {
    font-size: 28px;
    font-weight: 500;
    color: #d4af37;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding-top: 20px;
}


.faq-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    padding: 35px;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    padding-top: 10px;
}

.faq-item p {
    color: #2c2c2c;
    font-weight: 400;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    flex-grow: 1;
    padding-bottom: 15px;
}

.additional-info {
    margin-top: 60px;
    margin-bottom: 60px;
}

.additional-info h2 {
    font-size: 28px;
    font-weight: 500;
    color: #d4af37;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.info-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    padding: 25px;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.info-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.info-card p {
    color: #2c2c2c;
    font-weight: 400;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}


.additional-info {
    margin-top: 60px;
}

.additional-info h2 {
    font-size: 28px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.info-card {
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.info-card h3 {
    font-size: 18px;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 10px;
}

/* About Page Styles */
.about-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.about-content h1 {
    font-size: 48px;
    font-weight: 200;
    color: #f8f8f8;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
}

.about-intro {
    font-size: 20px;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 50px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

/* Mission Section */
.mission-section {
    margin-bottom: 60px;
    padding: 50px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.mission-section h2 {
    font-size: 28px;
    font-weight: 300;
    color: #d4af37;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.mission-section p {
    color: #d0d0d0;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}


/* What We Do Section */
.what-we-do {
    margin-bottom: 60px;
    padding: 50px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.what-we-do::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.what-we-do h2 {
    font-size: 28px;
    font-weight: 300;
    color: #d4af37;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.service-item {
    width: 100%;
}

.service-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    padding: 30px;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.service-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-item p {
    color: #2c2c2c;
    font-weight: 400;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    flex-grow: 1;
    text-align: left;
    font-size: 16px;
    margin: 0;
}

.about-intro {
    text-align: center;
    font-size: 20px;
    color: #d0d0d0;
    margin-bottom: 50px;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.3px;
}

h2 {
    color: #d4af37;
    font-weight: 500;
    font-size: 28px;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* What We Do Section */
.what-we-do {
    margin-bottom: 60px;
    padding: 50px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.what-we-do::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.what-we-do h2 {
    font-size: 28px;
    font-weight: 300;
    color: #d4af37;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

/* Values Section */
.values-section {
    margin-bottom: 60px;
    padding: 50px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.values-section h2 {
    font-size: 28px;
    font-weight: 300;
    color: #d4af37;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
    justify-items: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid,
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
    justify-items: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mission-item,
.service-item,
.value-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    text-align: center;
}

.mission-item:hover,
.service-item:hover,
.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.12);
}

.mission-item h3,
.service-item h3,
.value-item h3 {
    font-size: 22px;
    font-weight: 300;
    color: #f8f8f8;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
}

.mission-item p,
.service-item p,
.value-item p {
    color: #d0d0d0;
    font-weight: 400;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    text-align: center;
    font-size: 16px;
    margin: 0;
}

/* Team Section Styles */
.team-section {
    margin-bottom: 60px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.team-section p {
    color: #d0d0d0;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 300;
}

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

.team-member {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    padding: 30px;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.team-member h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.team-member p {
    color: #2c2c2c;
    font-weight: 400;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    flex-grow: 1;
    text-align: left;
    font-size: 16px;
}

/* Important Notice Section Styles */
.important-notice {
    margin-bottom: 60px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.important-notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.notice-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.notice-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    padding: 30px;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.notice-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.notice-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.notice-item p {
    color: #2c2c2c;
    font-weight: 400;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    flex-grow: 1;
    text-align: left;
    font-size: 16px;
}

/* Contact Section Styles */
.contact-section {
    margin-bottom: 60px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contact-section p {
    color: #d0d0d0;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 300;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    padding: 30px;
    position: relative;
    overflow: hidden;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.contact-item p {
    color: #2c2c2c;
    font-weight: 400;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    font-size: 16px;
    margin: 0;
}

h3 {
    color: #d0d0d0;
    font-weight: 400;
}

/* New Portal Styles */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    padding: 80px 60px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
}

.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-content {
    flex: 1;
    text-align: left;
}

.hero-subtitle {
    font-size: 20px;
    color: #d0d0d0;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.3px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 0 0 300px;
}

.hero-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero h1 {
    font-size: 64px;
    font-weight: 300;
    color: #f8f8f8;
    margin: 0;
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
    line-height: 1.1;
}

.hero p {
    font-size: 24px;
    color: #d0d0d0;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    margin: 0;
    max-width: 500px;
}

/* About Us Section */
.about-us {
    margin-bottom: 80px;
    padding: 60px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.about-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}


.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 300;
    color: #f8f8f8;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.about-text p {
    font-size: 18px;
    color: #d0d0d0;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-text .btn {
    margin-top: 30px;
    display: inline-block;
}

.about-image {
    flex: 0 0 300px;
}

.about-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Statistics Section */
.statistics {
    margin-bottom: 80px;
    padding: 100px 80px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.statistics h2 {
    font-size: 42px;
    font-weight: 300;
    color: #f8f8f8;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 40px 25px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.12);
}

.stat-number {
    font-size: 56px;
    font-weight: 200;
    color: #d4af37;
    margin-bottom: 15px;
    text-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    line-height: 1;
}

.stat-label {
    font-size: 18px;
    color: #d0d0d0;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

/* Features Section */
.features {
    margin-bottom: 80px;
    padding: 100px 80px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.features h2 {
    font-size: 36px;
    font-weight: 300;
    color: #f8f8f8;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    position: relative;
    z-index: 1;
    justify-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.feature-item {
    text-align: center;
    padding: 50px 35px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.12);
}


.feature-item h3 {
    font-size: 26px;
    font-weight: 300;
    color: #f8f8f8;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.feature-item p {
    font-size: 17px;
    color: #d0d0d0;
    line-height: 1.7;
    margin: 0;
}

/* Testimonials Section */
.testimonials {
    margin-bottom: 80px;
    padding: 100px 80px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials h2 {
    font-size: 42px;
    font-weight: 300;
    color: #f8f8f8;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-item {
    padding: 40px 35px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}

.testimonial-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.12);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 16px;
    color: #d0d0d0;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.author-name {
    font-size: 18px;
    font-weight: 500;
    color: #f8f8f8;
    margin-bottom: 5px;
}

.author-title {
    font-size: 14px;
    color: #d4af37;
}

/* Newsletter Section */
.newsletter {
    margin-bottom: 80px;
    padding: 60px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.newsletter-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.newsletter h2 {
    font-size: 36px;
    font-weight: 300;
    color: #f8f8f8;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.newsletter p {
    font-size: 18px;
    color: #d0d0d0;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto 30px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #f8f8f8;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: #a0a0a0;
}

.newsletter-form input:focus {
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.newsletter-disclaimer {
    font-size: 14px;
    color: #a0a0a0;
    margin: 0;
    line-height: 1.5;
}

/* About Section */
.about {
    margin-bottom: 80px;
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}


.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 300;
    color: #d4af37;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-text p {
    color: #d0d0d0;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 300;
}

.about-features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #d0d0d0;
    font-size: 16px;
}

.feature-icon {
    color: #d4af37;
    font-weight: bold;
    font-size: 18px;
}

.about-image {
    flex: 0 0 300px;
}

.about-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.btn-outline {
    background: transparent;
    color: #d4af37;
    padding: 16px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid #d4af37;
    display: inline-block;
    margin-top: 20px;
}

.btn-outline:hover {
    background: #d4af37;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* Statistics Section */
.statistics {
    margin-bottom: 80px;
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 48px;
    font-weight: 300;
    color: #d4af37;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.stat-label {
    font-size: 16px;
    color: #d0d0d0;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Features Section */
.features {
    margin-bottom: 80px;
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.features h2 {
    font-size: 36px;
    font-weight: 300;
    color: #d4af37;
    margin-bottom: 50px;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.feature-card .feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: #2c2c2c;
    font-weight: 400;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    font-size: 15px;
}

/* Testimonials Section */
.testimonials {
    margin-bottom: 80px;
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials h2 {
    font-size: 36px;
    font-weight: 300;
    color: #d4af37;
    margin-bottom: 50px;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.testimonial-content {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    color: #2c2c2c;
    font-style: italic;
    line-height: 1.6;
    font-size: 16px;
    margin: 0;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 5px 0;
}

.author-info span {
    color: #666;
    font-size: 14px;
}

.rating {
    font-size: 18px;
}

/* Newsletter Section */
.newsletter {
    margin-bottom: 80px;
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.newsletter-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.newsletter h2 {
    font-size: 36px;
    font-weight: 300;
    color: #d4af37;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.newsletter p {
    font-size: 18px;
    color: #d0d0d0;
    margin-bottom: 40px;
    font-weight: 300;
}

.newsletter-form {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 500px;
    margin: 0 auto 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #f5f5f5;
    font-size: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-width: 250px;
}

.newsletter-form input::placeholder {
    color: #b8b8b8;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-note {
    font-size: 14px;
    color: #b8b8b8;
    margin: 0;
}

.featured-articles {
    margin-bottom: 80px;
}

.featured-articles h2 {
    font-size: 32px;
    font-weight: 300;
    color: #d4af37;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.article-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.article-card.featured {
    border: 2px solid rgba(212, 175, 55, 0.4);
    box-shadow: 
        0 20px 40px rgba(212, 175, 55, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.article-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-content {
    padding: 25px;
    position: relative;
    z-index: 1;
}

.article-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.article-content h3 a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-content h3 a:hover {
    color: #d4af37;
}

.article-content p {
    color: #2c2c2c;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 15px;
}

.article-date {
    font-size: 13px;
    color: #b8b8b8;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.categories {
    margin-bottom: 80px;
}

.categories h2 {
    font-size: 32px;
    font-weight: 300;
    color: #d4af37;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.category-icon {
    font-size: 48px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.category-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.category-card h3 a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-card h3 a:hover {
    color: #d4af37;
}

.category-card p {
    color: #2c2c2c;
    font-weight: 400;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    font-size: 15px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding: 20px;
    z-index: 1000;
    display: none;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

.cookie-consent p {
    color: #d0d0d0;
    font-size: 14px;
    margin-bottom: 15px;
    text-align: center;
}

.cookie-consent a {
    color: #d4af37;
    text-decoration: none;
}

.cookie-consent a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.cookie-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

#accept-cookies {
    background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%);
    color: #1a1a1a;
}

#accept-cookies:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

#decline-cookies {
    background: rgba(255, 255, 255, 0.1);
    color: #d0d0d0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

#decline-cookies:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
        padding: 20px 0;
    }
    
    .nav {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .nav a {
        padding: 10px 15px;
        font-size: 16px;
        text-align: center;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 60px 30px;
        margin-bottom: 40px;
    }
    
    .hero-left,
    .hero-right {
        flex: none;
        justify-content: center;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 40px;
        margin-bottom: 15px;
    }
    
    .hero p {
        font-size: 18px;
        max-width: 100%;
    }
    
    .about-content {
        padding: 40px 20px;
    }
    
    .about-image {
        flex: none;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        max-width: 600px;
    }
    
    .stat-item {
        padding: 35px 25px;
    }
    
    .stat-number {
        font-size: 48px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 500px;
        padding: 0 20px;
    }
    
    .feature-item {
        padding: 40px 30px;
        max-width: 100%;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 500px;
        padding: 0 15px;
    }
    
    .testimonial-item {
        padding: 35px 30px;
        max-width: 100%;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .featured-articles h2,
    .categories h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .article-card {
        margin-bottom: 20px;
    }
    
    .article-content {
        padding: 20px;
    }
    
    .article-content h3 {
        font-size: 18px;
    }
    
    .category-card {
        padding: 20px;
    }
    
    .category-icon {
        font-size: 36px;
    }
    
    .cookie-consent {
        padding: 15px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .cookie-buttons button {
        width: 100%;
        max-width: 200px;
        padding: 12px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px 20px;
    }
    
    .hero-left,
    .hero-right {
        flex: none;
        justify-content: center;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-image {
        flex: none;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .about-content {
        padding: 40px 20px;
    }
    
    .about-image {
        flex: none;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        max-width: 500px;
        padding: 0 20px;
    }
    
    .feature-item {
        padding: 35px 25px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        max-width: 600px;
        padding: 0 15px;
    }
    
    .testimonial-item {
        padding: 30px 25px;
        max-width: 100%;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .newsletter-form input {
        min-width: auto;
    }
    
    .mission-grid,
    .services-grid,
    .values-grid,
    .team-grid,
    .notice-content,
    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-content {
        padding: 30px 20px;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 500px;
    }
    
    .services-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 500px;
    }
    
    .mission-section,
    .what-we-do,
    .values-section,
    .team-section,
    .important-notice,
    .contact-section {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .about-content {
        padding: 20px 15px;
    }
    
    .about-content h1 {
        font-size: 32px;
    }
    
    .about-intro {
        font-size: 16px;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }
    
    .services-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }
    
    .mission-item,
    .service-item,
    .value-item {
        padding: 30px 20px;
        max-width: 100%;
    }
    
    .mission-item h3,
    .service-item h3,
    .value-item h3 {
        font-size: 18px;
    }
    
    .mission-item p,
    .service-item p,
    .value-item p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 16px;
        max-width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 400px;
    }
    
    .stat-item {
        padding: 30px 25px;
    }
    
    .stat-number {
        font-size: 42px;
        margin-bottom: 12px;
    }
    
    .stat-label {
        font-size: 16px;
    }
    
    .about-us,
    .statistics,
    .features,
    .testimonials,
    .newsletter {
        padding: 60px 30px;
    }
    
    .about-text h2,
    .statistics h2,
    .features h2,
    .testimonials h2,
    .newsletter h2 {
        font-size: 28px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 400px;
        padding: 0 10px;
    }
    
    .testimonial-item {
        padding: 25px 20px;
        max-width: 100%;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .featured-articles h2,
    .categories h2 {
        font-size: 20px;
    }
    
    .article-content h3 {
        font-size: 16px;
    }
    
    .article-content p {
        font-size: 14px;
    }
    
    .category-card h3 {
        font-size: 18px;
    }
    
    .category-card p {
        font-size: 14px;
    }
    
    .nav a {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .cookie-consent p {
        font-size: 12px;
    }
}

.mission-section,
.what-we-do,
.values-section,
.team-section,
.important-notice,
.contact-section {
    margin-bottom: 60px;
}

.mission-section h2,
.what-we-do h2,
.values-section h2,
.team-section h2,
.important-notice h2,
.contact-section h2 {
    font-size: 28px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
}

.mission-grid,
.services-grid,
.values-grid,
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}



.notice-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.notice-item {
    padding: 20px;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    text-align: center;
}

.notice-item h3 {
    font-size: 18px;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 10px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 30px 0;
}


.contact-cta {
    text-align: center;
    margin-top: 30px;
}

/* Main Page Styles */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.main-content {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px) saturate(180%);
    border-radius: 24px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.blog-post {
    position: relative;
    z-index: 1;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #b8b8b8;
    font-weight: 300;
}

.post-title {
    font-size: 48px;
    font-weight: 200;
    color: #f8f8f8;
    margin-bottom: 35px;
    letter-spacing: -1.5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.post-intro {
    margin-bottom: 40px;
}

.post-intro p {
    font-size: 20px;
    color: #d0d0d0;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.3px;
}

.promo-banner {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 28px;
    padding: 60px;
    margin: 50px 0;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.promo-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
}

.promo-content {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.promo-text h2 {
    font-size: 32px;
    font-weight: 300;
    color: #d4af37;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.promo-image {
    flex-shrink: 0;
    position: relative;
}

.promo-image img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, transparent 50%);
    border-radius: 16px;
    pointer-events: none;
}

/* Blog Page Styles */
.blog-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background: linear-gradient(180deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    min-height: 100vh;
}

.blog-content h1 {
    font-size: 48px;
    font-weight: 300;
    color: #f5f5f5;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.blog-intro {
    text-align: center;
    font-size: 20px;
    color: #d0d0d0;
    margin-bottom: 50px;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.3px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(25px) saturate(180%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.blog-card:hover::before {
    opacity: 1;
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

.blog-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.card-image {
    height: 200px;
    overflow: hidden;
}

.blog-card.featured .card-image {
    height: 300px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 30px;
}

.card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 12px;
    color: #b8b8b8;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.card-meta .date {
    background: rgba(212, 175, 55, 0.1);
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #d4af37;
}

.card-meta .category {
    background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%);
    color: #1a1a1a;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 500;
}

.card-content h2 {
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #f5f5f5;
    letter-spacing: -0.5px;
}

.card-content h2 a {
    color: #f5f5f5;
    text-decoration: none;
    transition: all 0.3s ease;
}

.card-content h2 a:hover {
    color: #d4af37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.card-content p {
    color: #d0d0d0;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.read-more {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.read-more::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: #f4e4bc;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.read-more:hover::after {
    transform: translateX(5px);
}

.blog-categories {
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.6) 0%, rgba(31, 31, 31, 0.8) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.blog-categories h2 {
    font-size: 28px;
    font-weight: 300;
    color: #d4af37;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.category-link {
    background: white;
    color: #d4af37;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    border: 2px solid #20c997;
}

.category-link:hover {
    background: #20c997;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .promo-content {
        flex-direction: column;
        text-align: center;
    }
    
    .promo-image {
        margin-top: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .post-title {
        font-size: 24px;
    }
    
    .article-content h2 {
        font-size: 20px;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .main-content {
        padding: 30px;
    }
    
    .post-title {
        font-size: 32px;
    }
    
    .promo-content {
        flex-direction: column;
        text-align: center;
    }
    
    .promo-image img {
        width: 150px;
        height: 150px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-grid,
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .mission-grid,
    .services-grid,
    .values-grid,
    .team-grid,
    .notice-content,
    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .post-title {
        font-size: 20px;
    }
    
    .promo-banner {
        padding: 20px;
    }
    
    .promo-text h2 {
        font-size: 18px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 400px;
        padding: 0 15px;
    }
    
    .feature-item {
        padding: 30px 20px;
    }
    
    .feature-item h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .feature-item p {
        font-size: 15px;
    }
    
    .about-text h2,
    .features h2,
    .testimonials h2,
    .newsletter h2 {
        font-size: 24px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Values Section */
.values-section {
    margin-bottom: 60px;
    padding: 50px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.values-section h2 {
    font-size: 28px;
    font-weight: 300;
    color: #d4af37;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.value-item {
    width: 100%;
}

.value-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    padding: 30px;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.value-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.value-item p {
    color: #2c2c2c;
    font-weight: 400;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    flex-grow: 1;
    text-align: left;
    font-size: 16px;
    margin: 0;
}

/* Team Section */
.team-section {
    margin-bottom: 60px;
    padding: 50px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.team-section h2 {
    font-size: 28px;
    font-weight: 300;
    color: #d4af37;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.team-section p {
    color: #d0d0d0;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.team-member {
    flex: 1 1 400px;
    min-width: 400px;
    max-width: 600px;
}

.team-member {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    padding: 30px;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.team-member h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.team-member p {
    color: #2c2c2c;
    font-weight: 400;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    flex-grow: 1;
    text-align: left;
    font-size: 16px;
    margin: 0;
}

/* Important Notice Section */
.important-notice {
    margin-bottom: 60px;
    padding: 50px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.important-notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.important-notice h2 {
    font-size: 28px;
    font-weight: 300;
    color: #d4af37;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.notice-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.notice-item {
    flex: 1 1 400px;
    min-width: 400px;
    max-width: 600px;
}

.notice-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    padding: 30px;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.notice-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.notice-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.notice-item p {
    color: #2c2c2c;
    font-weight: 400;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    flex-grow: 1;
    text-align: left;
    font-size: 16px;
    margin: 0;
}

/* Contact Section */
.contact-section {
    margin-bottom: 60px;
    padding: 50px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contact-section h2 {
    font-size: 28px;
    font-weight: 300;
    color: #d4af37;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.contact-section p {
    color: #d0d0d0;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.contact-item {
    flex: 1 1 400px;
    min-width: 400px;
    max-width: 600px;
}

.contact-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    padding: 30px;
    position: relative;
    overflow: hidden;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.contact-item p {
    color: #2c2c2c;
    font-weight: 400;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    font-size: 16px;
    margin: 0;
}

.contact-cta {
    text-align: center;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}
