/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Futura', 'Arial', sans-serif;
    background-color: #fafafa; /* Much whiter background */
    color: #2c2c2c;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header styles */
.header {
    margin-bottom: 40px;
    position: relative;
}

.company-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c2c2c;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Main content styles */
.content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 60px; /* Space for company name */
}

.main-article {
    max-width: 800px;
    width: 100%;
    padding: 40px 0; /* Removed background and box-shadow */
    position: relative;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 3px solid #2c2c2c;
    padding-bottom: 15px;
}

.article-content {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 2.8rem; /* Doubled from 1.4rem to 2.8rem */
    line-height: 1.6;
    text-align: left; /* Fix weird justify spacing */
    letter-spacing: 0.05em; /* Increased letter spacing */
    font-weight: 300; /* Light weight for softer appearance */
}

.article-content p {
    margin-bottom: 25px;
    text-indent: 0;
    font-weight: 300; /* Light weight, not bold */
}

.article-content p:first-of-type {
    text-indent: 0;
    font-weight: 300; /* Light weight, not bold */
    font-size: 2.8rem; /* Same size as other paragraphs */
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .company-name {
        font-size: 1rem;
        position: static;
        margin-bottom: 20px;
        text-align: left;
    }
    
    .content {
        padding-top: 20px;
    }
    
    .main-article {
        padding: 25px 0;
        margin-top: 0;
    }
    
    .article-title {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .article-content {
        font-size: 2.4rem; /* Doubled from 1.2rem to 2.4rem */
	text-indent: 0;
        line-height: 1.5;
    }
    
    .article-content p:first-of-type {
        font-size: 2.4rem;
	text-indent: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .main-article {
        padding: 20px 0;
    }
    
    .article-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .article-content {
        font-size: 2.2rem; /* Doubled from 1.1rem to 2.2rem */
        line-height: 1.4;
    }
    
    .article-content p:first-of-type {
        font-size: 2.2rem;
    }
    
    .company-name {
        font-size: 0.9rem;
    }
}

/* Print styles for newspaper feel */
@media print {
    body {
        background-color: white;
    }
    
    .main-article {
        box-shadow: none;
        border: 1px solid #ccc;
    }
} 