/* Base styles */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

h1::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #4CAF50;
    margin: 1rem auto;
}

h2 {
    font-size: 1.8rem;
    color: #444;
    margin-bottom: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Layout */
.content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.left-column, .right-column {
    flex: 1;
    min-width: 300px;
}

.card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Contact info styles */
.contact-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.contact-list li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.75rem;
}

.contact-list li i {
    position: absolute;
    left: 0;
    top: 0.25rem;
    color: #4CAF50;
}

/* Form styles */
#contactForm {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#contactForm input,
#contactForm textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#contactForm input:focus,
#contactForm textarea:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
    outline: none;
}

#contactForm textarea {
    min-height: 120px;
    resize: vertical;
}

#contactForm button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#contactForm button:hover {
    background-color: #45a049;
    transform: translateY(-2px);
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .content {
        flex-direction: column;
    }

    .left-column, .right-column {
        width: 100%;
    }

    .right-column {
        order: -1; /* This moves the right column (contacts) to the top on mobile */
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }
    body {
        padding-top: 60px;
    }
    
}

@media screen and (max-width: 480px) {
    .content-wrapper {
        padding: 1rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    .card {
        padding: 1.5rem;
    }

    #contactForm input,
    #contactForm textarea {
        font-size: 0.9rem;
        padding: 0.7rem;
    }
}