:root {
    --bg-main: #0F172A;
    --accent-yellow: #FACC15;
    --accent-blue: #38BDF8;
    --accent-pink: #F472B6;
    --text-light: #E2E8F0;
    --text-white: #F1F5F9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-light);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    transition: all 0.3s ease;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.95));
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header.scrolled {
    background: linear-gradient(to right, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.98));
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    text-decoration: none;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-pink));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    transition: all 0.3s ease;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-pink));
    transition: width 0.3s ease;
}

.logo:hover::after {
    width: 100%;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-yellow);
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: var(--accent-yellow);
}

nav ul li a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-white);
    transition: all 0.3s ease;
}

/* Content padding to account for fixed header */
main {
    padding-top: 80px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-pink));
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.btn::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.7s ease;
}

.btn:hover::before {
    left: 100%;
}

/* Footer Styles */
footer {
    background-color: rgba(15, 23, 42, 0.95);
    padding: 60px 0 20px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-about .logo {
    margin-bottom: 15px;
    display: inline-block;
}

.company-desc {
    max-width: 300px;
    margin-top: 15px;
}

footer h3 {
    color: var(--text-white);
    margin-bottom: 20px;
    font-size: 18px;
    position: relative;
    padding-bottom: 10px;
}

footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-yellow);
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 15px;
}

footer ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer ul li a:hover {
    color: var(--accent-yellow);
}

footer address {
    font-style: normal;
    color: var(--text-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
}

/* Icon styles */
[class^="icon-"] {
    display: inline-block;
    width: 20px;
    text-align: center;
    margin-right: 10px;
}

.icon-phone::before {
    content: "📞";
}

.icon-location::before {
    content: "📍";
}

.icon-mail::before {
    content: "✉️";
}

/* Section Common Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-pink));
    margin: 0 auto;
}

/* Legal Pages Styles */
.legal-section {
    padding: 80px 0;
}

.legal-content {
    background-color: #fff;
    color: #333;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.legal-content h1 {
    color: #0F172A;
    margin-bottom: 20px;
    font-size: 2.5rem;
    text-align: center;
}

.legal-updated {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
    font-style: italic;
}

.legal-content h2 {
    color: #0F172A;
    margin: 30px 0 15px;
    font-size: 1.5rem;
    border-bottom: 2px solid #FACC15;
    padding-bottom: 10px;
}

.legal-content h3 {
    color: #0F172A;
    margin: 25px 0 10px;
    font-size: 1.2rem;
}

.legal-content p,
.legal-content ul {
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-content ul {
    padding-left: 20px;
}

.legal-content ul li {
    margin-bottom: 10px;
}

.legal-content a {
    color: #38BDF8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #F472B6;
}

/* Media Queries */
@media (max-width: 992px) {
    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-main);
        transition: left 0.3s ease;
        opacity: 0.95;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 20px;
    }
    
    nav ul li {
        margin: 15px 0;
        margin-left: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .company-desc {
        max-width: 100%;
    }
    
    footer h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .legal-content {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
} 