* {
    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: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}

.card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 60px;
    margin-top: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.logo-section {
    text-align: center;
    margin-bottom: 40px;
}

.logo-section a {
    text-decoration: none;
}

.logo {
    padding-left: 25px;
    padding-right: 25px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.logo-text {
    color: white;
    font-size: 32px;
    font-weight: bold;
}

.tagline {
    font-size: 2.0em;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 80px;
}

.about-section {
    margin-bottom: 50px;
}

.about-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.about-text {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.contact-section {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 40px;
    margin-top: 30px;
}

.contact-section h2 {
    font-size: 2em;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-details {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-details h3 {
    margin-bottom: 20px;
    color: #667eea;
    font-size: 1.3em;
}

.contact-item {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-item strong {
    min-width: 80px;
    color: #333;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
    margin-bottom: 20px;
    color: #667eea;
    font-size: 1.3em;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-group textarea {
    resize: vertical;
    height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1em;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.form-disclaimer {
    margin-bottom: 20px;
}

.form-disclaimer p {
    font-size: 0.85em;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.95em;
    font-weight: 500;
    border: 1px solid;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

ul li {
    margin-left: 30px;
}

.footer {
    padding: 20px 20px;
    margin-top: 20px;
}

.privacy-section {
    margin-bottom: 50px;
}

.privacy-section ul li {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
}

.privacy-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.privacy-section h3 {
    font-size: 1.3em;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #333;
}

.privacy-section p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-left {
    text-align: left;
}

.footer-right {
    text-align: right;
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9em;
    font-weight: 300;
    margin: 0;
}

.footer p a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer p a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .card {
        padding: 30px 20px;
        margin-top: 20px;
    }

    .company-name {
        font-size: 2em;
    }

    .tagline {
        font-size: 1.1em;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}