/* Common Styles - Gravity AdWorks */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Container */
.container {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
}

/* Typography */
h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

.tagline {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
}

.description {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-top: 30px;
}

.contact p {
    color: #666;
    margin-bottom: 10px;
}

.contact a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.contact a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #999;
    font-size: 0.9em;
}

