* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
    min-height: 100vh;
}

.tirta-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.tirta-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.tirta-logo {
    width: 200px;
    height: 60px;
    display: flex;
    align-items: center;
}

.tirta-company-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    text-align: left;
}

.tirta-nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.tirta-nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
}

.tirta-nav-menu a:hover,
.tirta-nav-active {
    color: #4f46e5;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(6, 182, 212, 0.1));
    padding: 8px 16px;
    border-radius: 20px;
    transform: translateY(-1px);
}

.tirta-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4f46e5, #06b6d4);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.tirta-nav-menu a:hover::after,
.tirta-nav-active::after {
    width: 100%;
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.3);
}

.tirta-nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.tirta-nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.tirta-main {
    margin-top: 80px;
}

.tirta-page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    color: white;
    text-align: center;
}

.tirta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tirta-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.tirta-page-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.tirta-privacy-content {
    padding: 60px 0;
    background: #ffffff;
}

.tirta-privacy-section {
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tirta-privacy-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
}

.tirta-privacy-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #374151;
    margin: 25px 0 15px 0;
}

.tirta-privacy-section p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 15px;
}

.tirta-privacy-section ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.tirta-privacy-section li {
    padding: 8px 0;
    color: #4b5563;
    position: relative;
    padding-left: 25px;
    line-height: 1.6;
}

.tirta-privacy-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4f46e5;
    font-weight: bold;
    font-size: 1.2rem;
}

.tirta-privacy-section strong {
    color: #1f2937;
    font-weight: 600;
}

.tirta-privacy-footer {
    background: #f9fafb;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-top: 40px;
    border: 1px solid #e5e7eb;
}

.tirta-privacy-footer p {
    color: #6b7280;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.tirta-privacy-footer strong {
    color: #1f2937;
}

.tirta-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
    color: white;
    text-align: center;
}

.tirta-cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.tirta-cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.tirta-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.tirta-btn-primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.tirta-btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.tirta-btn-outline {
    background: transparent;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.tirta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

.tirta-footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.tirta-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.tirta-footer-logo {
    width: 200px;
    height: 60px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.tirta-footer-company-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    text-align: left;
}

.tirta-footer-desc {
    color: #d1d5db;
    line-height: 1.8;
    max-width: 400px;
}

.tirta-footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.tirta-footer-links {
    list-style: none;
}

.tirta-footer-links li {
    margin-bottom: 10px;
}

.tirta-footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tirta-footer-links a:hover {
    color: #4f46e5;
}

.tirta-contact-info p {
    color: #d1d5db;
    margin-bottom: 8px;
    line-height: 1.6;
}

.tirta-footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    color: #9ca3af;
}

/* Privacy Banner Styles */
.tirta-privacy-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: white;
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.tirta-privacy-banner.show {
    transform: translateY(0);
}

.tirta-privacy-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.tirta-privacy-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

.tirta-privacy-text a {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 500;
}

.tirta-privacy-text a:hover {
    text-decoration: underline;
}

.tirta-privacy-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.tirta-privacy-accept {
    background: linear-gradient(45deg, #4f46e5, #06b6d4);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.tirta-privacy-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}

.tirta-privacy-close {
    background: transparent;
    border: 2px solid #6b7280;
    color: #6b7280;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.tirta-privacy-close:hover {
    border-color: white;
    color: white;
}

@media (max-width: 768px) {
    .tirta-nav-menu {
        display: none;
    }

    .tirta-nav-toggle {
        display: flex;
    }

    .tirta-logo {
        width: 160px;
    }

    .tirta-company-name {
        font-size: 0.75rem;
    }

    .tirta-footer-logo {
        width: 180px;
    }

    .tirta-footer-company-name {
        font-size: 0.8rem;
    }

    .tirta-page-title {
        font-size: 2rem;
    }

    .tirta-privacy-section {
        margin-bottom: 40px;
    }

    .tirta-privacy-section h2 {
        font-size: 1.5rem;
    }

    .tirta-privacy-section h3 {
        font-size: 1.2rem;
    }

    .tirta-footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tirta-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .tirta-privacy-footer {
        padding: 25px 20px;
    }

    .tirta-privacy-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .tirta-privacy-actions {
        width: 100%;
        justify-content: space-between;
    }

    .tirta-privacy-accept,
    .tirta-privacy-close {
        flex: 1;
        text-align: center;
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .tirta-logo {
        width: 140px;
    }

    .tirta-company-name {
        font-size: 0.7rem;
    }

    .tirta-footer-company-name {
        font-size: 0.75rem;
    }

    .tirta-page-title {
        font-size: 1.8rem;
    }

    .tirta-cta-title {
        font-size: 1.8rem;
    }

    .tirta-privacy-section h2 {
        font-size: 1.4rem;
    }

    .tirta-privacy-section h3 {
        font-size: 1.1rem;
    }

    .tirta-privacy-footer {
        padding: 20px 15px;
    }

    .tirta-container {
        padding: 0 15px;
    }

    .tirta-privacy-banner {
        padding: 15px;
    }

    .tirta-privacy-text {
        font-size: 0.9rem;
    }

    .tirta-privacy-actions {
        flex-direction: column;
        gap: 10px;
    }

    .tirta-privacy-accept,
    .tirta-privacy-close {
        width: 100%;
    }
}