/* Import Aptos font */
@import url('https://fonts.googleapis.com/css2?family=Aptos:wght@300;400;500;600;700&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Aptos', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fafafa;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation styles */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(250, 250, 250, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.nav-link {
    color: #4a4a4a;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #1a1a1a;
    background: rgba(0, 0, 0, 0.1);
}

/* Section styles */
.section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 0 60px 0;
    text-align: center;
}

.home-section {
    padding-top: 120px;
}

.legal-section {
    align-items: flex-start;
    text-align: left;
    padding: 100px 0 60px 0;
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 40px;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a, #4a4a4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Logo section styles */
.logo-section {
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out;
}

.logo-container {
    display: inline-block;
}

.logo {
    max-height: 150px;
    width: auto;
}

/* Contact section styles */
.contact-section {
    max-width: 500px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.contact-item {
    padding: 3px 0;
    transition: all 0.3s ease;
    cursor: default;
    border-radius: 8px;
}

.contact-item:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.contact-item.name-title {
    margin-bottom: 2px;
}

.contact-item.name-title:last-of-type {
    margin-bottom: 15px;
}

.contact-item.address {
    margin-bottom: 15px;
}

.contact-value {
    font-size: 0.95rem;
    color: #2a2a2a;
    font-weight: 400;
    line-height: 1.5;
}

/* Legal content styles */
.legal-content {
    padding: 40px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.legal-content h3 {
    color: #1a1a1a;
    margin-bottom: 15px;
    margin-top: 25px;
    font-weight: 500;
    font-size: 1.2rem;
}

.legal-content h3:first-child {
    margin-top: 0;
}

.legal-content h4 {
    color: #2a2a2a;
    margin-bottom: 10px;
    margin-top: 20px;
    font-weight: 500;
    font-size: 1.1rem;
}

.legal-content p {
    margin-bottom: 15px;
    color: #2a2a2a;
    line-height: 1.8;
}

.legal-content ul {
    color: #2a2a2a;
    margin-bottom: 15px;
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content a {
    color: #4a4a4a;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1a1a1a;
}

/* Footer styles */
.footer {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    padding: 40px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    background: rgba(0, 0, 0, 0.02);
}

.footer-copyright {
    color: #666666;
    font-size: 0.9rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Copied notification styles */
.copied-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.copied-notification.show {
    opacity: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .navigation {
        gap: 20px;
        padding: 12px 0;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
    
    .section {
        padding: 80px 0 40px 0;
    }
    
    .home-section {
        padding-top: 100px;
    }
    
    .legal-section {
        padding: 80px 0 40px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .logo {
        max-height: 120px;
    }
    
    .contact-info {
        padding: 20px;
    }
    
    .contact-value {
        font-size: 0.9rem;
    }
    
    .legal-content {
        padding: 20px;
    }
    
    .legal-content h3 {
        font-size: 1.1rem;
    }
    
    .legal-content h4 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .navigation {
        gap: 15px;
        padding: 10px 0;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
    
    .section {
        padding: 70px 0 30px 0;
    }
    
    .home-section {
        padding-top: 90px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .logo {
        max-height: 100px;
    }
    
    .contact-info {
        padding: 15px;
        gap: 5px;
    }
    
    .contact-value {
        font-size: 0.85rem;
    }
    
    .legal-content {
        padding: 15px;
    }
    
    .legal-content h3 {
        font-size: 1rem;
    }
    
    .legal-content h4 {
        font-size: 0.95rem;
    }
    
    .legal-content p {
        font-size: 0.9rem;
    }
} 