.content-container {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.content-box {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    color: #fff;
}

.content-box h1 {
    color: #fff;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2rem;
}

.content-section {
    margin-bottom: 2.5rem;
}

.content-section:last-child {
    margin-bottom: 0;
}

.content-section h2 {
    color: #007bff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.content-section p {
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.content-section ul {
    list-style-type: none;
    padding-left: 0;
}

.content-section ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: #e0e0e0;
}

.content-section ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: #ff69b4;
    border-radius: 50%;
}

/* Contact Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-form label {
    color: #fff;
    font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.8rem;
    border: 1px solid #2a2a2a;
    border-radius: 5px;
    background: #0d0d0d;
    color: #fff;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #7b2cbf;
}

.submit-button {
    background: linear-gradient(45deg, #ff69b4, #7b2cbf);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(123,44,191,0.3);
}

/* Contact Info Styles */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.contact-item {
    background: #0d0d0d;
    padding: 1.5rem;
    border-radius: 5px;
}

.contact-item strong {
    color: #007bff;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-item p {
    margin: 0;
    color: #e0e0e0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.feature {
    background: #0d0d0d;
    padding: 1.5rem;
    border-radius: 5px;
    text-align: center;
}

.feature h3 {
    color: #007bff;
    margin-bottom: 0.5rem;
}

.feature p {
    margin: 0;
    color: #e0e0e0;
    font-size: 0.9rem;
}
