/* Global Styles */
:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --dark-color: #1f2937;
    --light-color: #f9fafb;
    --text-color: #374151;
    --text-light: #6b7280;
    --white: #ffffff;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --rounded-sm: 0.25rem;
    --rounded: 0.5rem;
    --rounded-lg: 0.75rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--rounded);
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin-left: 1rem;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--dark-color);
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* Header Styles */
.main-header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.75rem;
    font-weight: 700;
}

.primary-text {
    color: var(--primary-color);
}

.secondary-text {
    color: var(--dark-color);
}

.main-nav ul {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 10rem 0 5rem;
    background: linear-gradient(135deg, #f0f4ff 0%, #e6f0ff 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--primary-color);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }

50% { transform: translateY(-20px); }

100% { transform: translateY(0px); }

}

/* Stats Section */
.stats-section {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4rem 0;
    margin: 3rem 0;
}

.stats-section .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    min-width: 200px;
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Services Preview */
.services-preview {
    padding: 5rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--rounded-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

/* Footer Styles */
.main-footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 4rem 0 0;
}

.main-footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-col h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-info i {
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    color: var(--gray-200);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

.hero-content {
        margin-bottom: 3rem;
    }

.hero p {
        margin-left: auto;
        margin-right: auto;
    }

.hero-buttons {
        justify-content: center;
    }

}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background-color: var(--white);
        box-shadow: var(--shadow);
        transition: left 0.3s ease;
    }

.main-nav.active {
        left: 0;
    }

.main-nav ul {
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }

.mobile-menu-btn {
        display: block;
    }

.hero h1 {
        font-size: 2.5rem;
    }

.hero p {
        font-size: 1.1rem;
    }

.section-title {
        font-size: 2rem;
    }

}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }

.btn-secondary {
        margin-left: 0;
        margin-top: 1rem;
        display: block;
    }

.stat-card {
        min-width: 150px;
        padding: 1rem;
    }

.stat-card h3 {
        font-size: 2rem;
    }

}

/* Page Hero */
.page-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: var(--white);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Service Detail */
.services-detail {
    padding: 5rem 0;
}

.service-detail-card {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-icon {
    flex: 1;
    display: flex;
    justify-content: center;
}

.service-detail-icon i {
    font-size: 5rem;
    color: var(--primary-color);
}

.service-detail-content {
    flex: 2;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.service-detail-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.service-features li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features i {
    color: var(--primary-color);
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background-color: var(--gray-100);
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
        text-align: center;
    }

.service-features li {
        justify-content: center;
    }

.page-hero h1 {
        font-size: 2.5rem;
    }

}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-info {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--rounded-lg);
    box-shadow: var(--shadow);
}

.contact-info h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.contact-info p {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.25rem;
}

.contact-details h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.contact-details a {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--secondary-color);
}

.working-hours {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.working-hours h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.working-hours p {
    margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--rounded-lg);
    box-shadow: var(--shadow);
}

.contact-form h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--rounded-sm);
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

/* Map Section */
.map-section {
    padding: 0 0 5rem;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--dark-color);
}

.map-container {
    border-radius: var(--rounded-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Upwork icon fix */
.fab.fa-upwork {
    font-size: 1.1em;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

.map-section h2 {
        font-size: 1.75rem;
    }

}

/* Industries Section */
.industries-section {
    padding: 5rem 0;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-intro h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.section-intro p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.industry-card {
    background-color: var(--white);
    border-radius: var(--rounded-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.industry-icon {
    width: 60px;
    height: 60px;
    background-color: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.industry-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.industry-solutions li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-light);
}

.industry-solutions li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.industry-cta {
    text-align: center;
    padding: 3rem;
    background-color: var(--gray-100);
    border-radius: var(--rounded-lg);
    margin-top: 2rem;
}

.industry-cta h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.industry-cta p {
    margin-bottom: 2rem;
    color: var(--text-light);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Font Awesome industry icons */
.fa-oil-well:before {
    content: "\f719";
}

.fa-tower-cell:before {
    content: "\e585";
}

.fa-boxes-packing:before {
    content: "\e4c6";
}

@media (max-width: 768px) {
    .section-intro h2 {
        font-size: 1.75rem;
    }

.industries-grid {
        grid-template-columns: 1fr;
    }

.industry-cta {
        padding: 2rem 1rem;
    }

.industry-cta h2 {
        font-size: 1.5rem;
    }

}

/* About Section */
.about-section {
    padding: 5rem 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.about-text {
    flex: 2;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.about-text h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--dark-color);
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--rounded-lg);
}

/* Expertise Section */
.expertise-section {
    margin: 4rem 0;
}

.expertise-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: var(--dark-color);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.expertise-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--rounded-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-5px);
}

.expertise-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.expertise-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.expertise-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Team Strengths Section */
.team-section {
    padding: 4rem 0;
    background-color: var(--gray-100);
}

.team-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: var(--dark-color);
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.strength-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--rounded-lg);
    box-shadow: var(--shadow);
    text-align: center;
}

.strength-icon {
    width: 70px;
    height: 70px;
    background-color: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    font-size: 1.75rem;
}

.strength-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.strength-card p {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

.about-image {
        order: -1;
        margin-bottom: 2rem;
    }

.expertise-card, .strength-card {
        padding: 1.5rem;
    }

}

/* Hero Image Styling */
.hero-image svg {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    animation: float 6s ease-in-out infinite;
}

50% { transform: translateY(-15px); }

}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-image svg {
        max-height: 300px;
        margin-top: 2rem;
    }

}

.hero-image svg {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    animation: float 6s ease-in-out infinite;
}

50% { transform: translateY(-10px); }

}

@media (max-width: 768px) {
    .hero-image svg {
        max-height: 300px;
    }

}

/* Contact Form Styling */
.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--rounded-lg);
    box-shadow: var(--shadow);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--rounded-sm);
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: var(--gray-100);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

.contact-form {
        order: -1;
    }

}

/* Contact Page Styling */
.contact-section {
    padding: 4rem 0;
    text-align: center;
}

.contact-info-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 3rem;
    border-radius: var(--rounded-lg);
    box-shadow: var(--shadow);
}

.contact-intro {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.contact-method {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--dark-color);
}

.working-hours {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.working-hours h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.working-hours p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .contact-info-container {
        padding: 2rem;
    }

.contact-method {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

}

/* Careers Page Styling */
.careers-section {
    padding: 4rem 0;
}

.job-opening {
    max-width: 900px;
    margin: 0 auto;
}

.job-opening h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--dark-color);
    font-size: 2rem;
}

.job-card {
    background-color: var(--white);
    border-radius: var(--rounded-lg);
    box-shadow: var(--shadow);
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.job-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
}

.meta-item i {
    color: var(--primary-color);
}

.job-content h4 {
    font-size: 1.25rem;
    margin: 1.5rem 0 1rem;
    color: var(--dark-color);
}

.job-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.job-content li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.responsibilities li::before {
    content: "▹";
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.requirements li::before {
    content: "✓";
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.benefits li::before {
    content: "★";
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.job-type {
    font-size: 1.1rem;
    margin: 1.5rem 0;
    color: var(--dark-color);
    text-align: center;
}

.apply-section {
    text-align: center;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .job-card {
        padding: 1.5rem;
    }

.job-meta {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }

}
/* Use your existing :root and reset code here */

.form-container {
    background-color: var(--white);
    padding: 2rem;
    margin: 3rem auto;
    max-width: 500px;
    border-radius: var(--rounded-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}

h2 {
    text-align: left;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: 600;
}

form input[type="text"],
form input[type="file"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--rounded);
    background-color: var(--gray-100);
    margin-bottom: 1.25rem;
    transition: border-color 0.3s ease;
}

form input[type="text"]:focus,
form input[type="file"]:focus {
    border-color: var(--accent-color);
    outline: none;
}

input[type="submit"] {
    display: block;
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.75rem;
    border: none;
    border-radius: var(--rounded);
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: var(--secondary-color);
}