* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --text-light: #e94560;
    --text-white: #ffffff;
    --text-gray: #e0e0e0;
    --overlay-dark: rgba(0, 0, 0, 0.6);
    --delimiter-color: #5BA3F5;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-image: url('../images/Back.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(15, 52, 96, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
    animation: fadeInUp 1s ease-out;
}

.logo-container {
    margin-bottom: 30px;
}

.logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    animation: logoFloat 3s ease-in-out infinite;
}

.company-name {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-white);
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hero-text {
    margin-top: 40px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
    max-width: 800px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 0;
    min-height: 60vh;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-white);
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--delimiter-color);
    border-radius: 2px;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.subsection-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 30px;
    text-align: center;
}

.mission-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-gray);
    text-align: justify;
    padding: 0 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Social Media Section */
.social-section {
    background: var(--accent-color);
    padding: 60px 0;
    text-align: center;
}

.social-toggle-container {
    margin-bottom: 30px;
}

.social-toggle-btn {
    background: var(--text-light);
    color: var(--text-white);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.social-toggle-btn:hover {
    background: #d63a52;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.4);
}

.social-toggle-btn:active {
    transform: translateY(0);
}

.social-toggle-btn i {
    font-size: 1.2rem;
}

.social-media {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 30px;
    animation: fadeIn 0.5s ease-in;
}

.social-media.hidden {
    display: none;
}

.social-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-white);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
    background: var(--text-light);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(233, 69, 96, 0.4);
    border-color: var(--text-light);
}

/* Footer */
.footer {
    background: var(--primary-color);
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-text {
    color: var(--text-gray);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero-content {
        padding: 30px 15px;
    }

    .company-name {
        font-size: 2.5rem;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        padding: 0 10px;
    }

    .about {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
        letter-spacing: 1px;
        margin-bottom: 40px;
        padding-bottom: 15px;
    }

    .subsection-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .mission-text {
        font-size: 1rem;
        text-align: left;
        padding: 0 10px;
        line-height: 1.7;
    }

    .logo {
        width: 150px;
        height: 150px;
        margin-bottom: 15px;
    }

    .logo-container {
        margin-bottom: 20px;
    }

    .hero-text {
        margin-top: 30px;
    }

    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .hero {
        background-attachment: scroll;
    }

    .footer {
        padding: 25px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content {
        padding: 20px 15px;
    }

    .company-name {
        font-size: 2rem;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 5px;
    }

    .about {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
        margin-bottom: 30px;
        padding-bottom: 12px;
    }

    .subsection-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .mission-text {
        font-size: 0.95rem;
        padding: 0 5px;
        line-height: 1.6;
    }

    .logo {
        width: 120px;
        height: 120px;
        margin-bottom: 10px;
    }

    .logo-container {
        margin-bottom: 15px;
    }

    .hero-text {
        margin-top: 20px;
    }

    .footer {
        padding: 20px 0;
    }

    .footer-text {
        font-size: 0.85rem;
        padding: 0 10px;
    }
}

/* Privacy Policy Page Styles */
.privacy-page {
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    min-height: 100vh;
    padding: 80px 0;
}

.privacy-header {
    text-align: center;
    margin-bottom: 50px;
}

.privacy-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.privacy-header p {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-white);
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.privacy-content {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-white);
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--delimiter-color);
}

.privacy-content h2:first-child {
    margin-top: 0;
}

.privacy-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
    text-align: justify;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.privacy-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.privacy-content li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.privacy-content strong {
    color: var(--text-white);
}

.last-updated {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .privacy-page {
        padding: 60px 0;
    }

    .privacy-header {
        margin-bottom: 40px;
    }

    .privacy-header h1 {
        font-size: 2rem;
        letter-spacing: 1px;
        margin-bottom: 8px;
    }

    .privacy-header p {
        font-size: 2.5rem;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .privacy-content {
        padding: 25px 20px;
        margin: 0 15px;
    }

    .privacy-content h2 {
        font-size: 1.5rem;
        margin-top: 30px;
        margin-bottom: 15px;
        padding-bottom: 8px;
    }

    .privacy-content p {
        text-align: left;
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .privacy-content ul {
        margin-left: 20px;
    }

    .privacy-content li {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .last-updated {
        margin-top: 40px;
        padding-top: 25px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .privacy-page {
        padding: 40px 0;
    }

    .privacy-header {
        margin-bottom: 30px;
    }

    .privacy-header h1 {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .privacy-header p {
        font-size: 2rem;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }

    .privacy-content {
        padding: 20px 15px;
        margin: 0 10px;
    }

    .privacy-content h2 {
        font-size: 1.3rem;
        margin-top: 25px;
        margin-bottom: 12px;
        padding-bottom: 6px;
    }

    .privacy-content p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .privacy-content ul {
        margin-left: 15px;
        margin-bottom: 15px;
    }

    .privacy-content li {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 8px;
    }

    .last-updated {
        margin-top: 30px;
        padding-top: 20px;
        font-size: 0.8rem;
    }
}

