* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    margin-bottom: 150px;
    margin-top: 60px;
}

.main-image {
    max-width: 50%;
    height: auto;
}

.secondary-images {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

.image-wrapper {
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    width: 100%;
}

.image-wrapper:hover {
    transform: scale(1.05);
}

.clickable-image {
    max-width: 300px;
    height: auto;
}

.footer {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #ddd;
    margin-top: 80px;
}

.footer-text {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    font-style: italic;
}

.text-input {
    margin-bottom: 20px;
}

textarea {
    width: 100%;
    max-width: 600px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    resize: vertical;
}

.footer-links {
    margin: 15px 0;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    color: #333;
}

.copyright {
    color: #999;
    font-size: 12px;
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .main-image {
        max-width: 70%;
    }
    
    .clickable-image {
        max-width: 50%;
    }
    
    .secondary-images {
        width: 100%;
    }
    
    .image-wrapper {
        display: flex;
        justify-content: center;
        width: 100%;
    }
} 