body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #4c2695;
    min-height: 100vh;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    background-image: url('/bg-pattern.svg');
    background-repeat: repeat;
    opacity: 0.1;
    z-index: -1;
    will-change: transform;
    transform: translateY(var(--bg-offset, 0px));
}

.page-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 15px;
    gap: 30px;
    flex: 1;
}

.two-column-wrapper {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 30px;
    max-width: 1400px;
    width: 100%;
    align-items: start;
}

.left-column, .right-column {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px;
    width: 100%;
}

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

@media (max-width: 1024px) {
    .two-column-wrapper {
        grid-template-columns: 1fr;
    }
    
    .right-column {
        order: -1;
    }
}

.container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 30px;
    max-width: 600px;
    width: 100%;
    text-align: left;
}

.two-column-wrapper .container {
    max-width: 100%;
}

h1 {
    color: #333;
    margin-bottom: 30px;
    font-size: 2.5em;
}

p {
    color: #666;
    margin-top: 20px;
}

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

label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
}

input, textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1em;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #1e3c72;
}

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

button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.1s ease, box-shadow 0.3s ease;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(30, 60, 114, 0.4);
}

button:active {
    transform: translateY(0);
}

.count {
    color: #999;
    font-size: 0.9em;
    margin-top: 20px;
}

.feature-section {
    margin: 40px 0;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.feature-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.feature-image:hover {
    transform: scale(1.02);
}

.feature-description {
    text-align: center;
    width: 100%;
}

.feature-description h2 {
    color: #1e3c72;
    margin-bottom: 15px;
    font-size: 1.8em;
}

.feature-description p {
    color: #555;
    line-height: 1.6;
    text-align: center;
    margin-top: 0;
}
