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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: #555;
}

a {
    color: #ad372a;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #8b2a20;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #ad372a;
    color: white;
}

.btn-primary:hover {
    background-color: #8b2a20;
    color: white;
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background-color: #5a6268;
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: #ad372a;
    border: 2px solid #ad372a;
}

.btn-outline:hover {
    background-color: #ad372a;
    color: white;
}

/* Cookie Banner and Modal */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner p {
    color: white;
    margin-bottom: 0;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    align-items: center;
    justify-content: center;
}

.cookie-modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-category {
    margin: 15px 0;
}

.cookie-category label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.cookie-modal-buttons {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Header and Navigation */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    padding: 15px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 40px;
    width: auto;
}

.company-name {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #ad372a;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 3px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: 0.3s;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #ad372a 0%, #8b2a20 100%);
}

.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.banner-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: white;
    opacity: 0.9;
}

.cta-button {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: white;
    color: #ad372a;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-alt {
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.section-icon {
    width: 80px;
    height: 80px;
}

.page-header {
    background-color: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.page-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}

/* Content Grids */
.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.section-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.link-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: inherit;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    color: inherit;
}

.link-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.link-card h3 {
    color: #ad372a;
    margin-bottom: 10px;
}

/* Feature Lists */
.feature-list {
    list-style: none;
    margin-top: 20px;
}

.feature-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #555;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ad372a;
    font-weight: bold;
}

/* Architecture Highlights */
.architecture-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.highlight-item {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #ad372a;
}

.highlight-item h4 {
    color: #ad372a;
    margin-bottom: 10px;
}

/* Comparison Section */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.comparison-item {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.comparison-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.comparison-item h3 {
    color: #ad372a;
    margin-bottom: 20px;
}

.comparison-item ul {
    list-style: none;
}

.comparison-item li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.comparison-item li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ad372a;
    font-weight: bold;
}

.comparison-conclusion {
    margin-top: 40px;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid #ad372a;
}

/* Building Process */
.building-process {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.step-number {
    background-color: #ad372a;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.building-tips {
    margin-top: 40px;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #ad372a;
}

.building-tips h3 {
    color: #ad372a;
    margin-bottom: 20px;
}

.building-tips ul {
    list-style: none;
}

.building-tips li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.building-tips li::before {
    content: "💡";
    position: absolute;
    left: 0;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info h3 {
    color: #ad372a;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.social-links {
    margin-top: 30px;
}

.social-links h4 {
    margin-bottom: 15px;
    color: #ad372a;
}

.social-links a {
    display: inline-block;
    margin-right: 15px;
    padding: 8px 15px;
    background-color: #ad372a;
    color: white;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #8b2a20;
    color: white;
}

/* Forms */
.contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ad372a;
}

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

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

footer p {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    color: #bdc3c7;
}

/* Page-specific styles */

/* Top Buildings */
.top-buildings-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.building-item {
    display: flex;
    gap: 30px;
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    align-items: flex-start;
}

.building-rank {
    background-color: #ad372a;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.building-content {
    display: flex;
    gap: 30px;
    flex: 1;
}

.building-image {
    width: 150px;
    height: 150px;
    flex-shrink: 0;
    border-radius: 10px;
}

.building-info {
    flex: 1;
}

.building-architect,
.building-year {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.building-features {
    list-style: none;
    margin-top: 15px;
}

.building-features li {
    background-color: #f8f9fa;
    padding: 8px 12px;
    margin-bottom: 5px;
    border-radius: 5px;
    border-left: 3px solid #ad372a;
    font-size: 0.9rem;
}

/* Historical Architecture */
.content-article {
    max-width: 800px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    padding-left: 30px;
    margin: 30px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #ad372a;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 40px;
}

.timeline-year {
    position: absolute;
    left: -50px;
    top: 0;
    background-color: #ad372a;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-weight: bold;
    font-size: 0.9rem;
}

.timeline-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.timeline-content h4 {
    color: #ad372a;
    margin-bottom: 10px;
}

.architecture-period {
    margin: 40px 0;
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.period-content {
    display: flex;
    gap: 30px;
    padding: 30px;
}

.period-image {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
    border-radius: 10px;
}

.period-text {
    flex: 1;
}

.gothic-phases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.phase-item {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #ad372a;
}

.phase-item h5 {
    color: #ad372a;
    margin-bottom: 10px;
}

.heritage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.heritage-item {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #ad372a;
}

.heritage-item h4 {
    color: #ad372a;
    margin-bottom: 15px;
}

.conservation-principles {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    margin: 30px 0;
    border-left: 4px solid #ad372a;
}

.conservation-principles h4 {
    color: #ad372a;
    margin-bottom: 20px;
}

.conservation-principles ul {
    list-style: none;
}

.conservation-principles li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.conservation-principles li::before {
    content: "⚖️";
    position: absolute;
    left: 0;
}

/* Ecological Construction */
.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.material-card {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #ad372a;
}

.material-card h4 {
    color: #ad372a;
    margin-bottom: 15px;
}

.standards-list {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.standard-item {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #ad372a;
}

.standard-item h4 {
    color: #ad372a;
    margin-bottom: 10px;
}

.tech-list {
    list-style: none;
    margin: 20px 0;
}

.tech-list li {
    margin-bottom: 15px;
    padding: 15px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #ad372a;
}

.funding-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.funding-card {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #ad372a;
    text-align: center;
}

.funding-card h4 {
    color: #ad372a;
    margin-bottom: 15px;
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-content h2 {
    color: #ad372a;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #ad372a;
    padding-bottom: 10px;
}

.legal-content h3 {
    color: #ad372a;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content h4 {
    color: #ad372a;
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 8px;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #ad372a;
    margin: 20px 0;
}

.cookie-category-info {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.cookie-settings-section {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin: 30px 0;
}

.browser-settings {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.browser-settings h4 {
    color: #ad372a;
    margin-top: 20px;
    margin-bottom: 10px;
}

/* Thanks Page */
.thanks-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.thanks-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
}

.thanks-content h1 {
    color: #ad372a;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
}

.next-steps {
    margin: 50px 0;
}

.next-steps h2 {
    color: #ad372a;
    margin-bottom: 30px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.step-item {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.step-item .step-number {
    background-color: #ad372a;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-item h3 {
    color: #ad372a;
    margin-bottom: 15px;
}

.contact-reminder {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
}

.contact-reminder h3 {
    color: #ad372a;
    margin-bottom: 15px;
}

.emergency-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
    font-size: 1.2rem;
    color: #ad372a;
}

.business-hours {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
}

.explore-more {
    margin: 50px 0;
}

.explore-more h3 {
    color: #ad372a;
    margin-bottom: 20px;
}

.explore-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.explore-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    color: inherit;
}

.explore-card:hover {
    transform: translateY(-3px);
    color: inherit;
}

.explore-card img {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.explore-card h4 {
    color: #ad372a;
    margin-bottom: 5px;
}

.explore-card p {
    font-size: 0.9rem;
    margin: 0;
}

.thanks-actions {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .building-item {
        flex-direction: column;
        text-align: center;
    }
    
    .building-content {
        flex-direction: column;
        text-align: left;
    }
    
    .building-image {
        align-self: center;
    }
    
    .period-content {
        flex-direction: column;
    }
    
    .period-image {
        align-self: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .cookie-modal-buttons {
        justify-content: center;
    }
    
    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .explore-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .building-rank {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .building-image {
        width: 120px;
        height: 120px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-year {
        position: relative;
        left: 0;
        display: inline-block;
        margin-bottom: 10px;
    }
    
    .timeline {
        padding-left: 0;
    }
    
    .timeline::before {
        display: none;
    }
    
    .timeline-item {
        padding-left: 0;
        margin-bottom: 40px;
    }
    .process-step {
        flex-direction: column;
    }
    body {
        word-break: break-word;
    }
}

/* Print Styles */
@media print {
    .cookie-banner,
    .cookie-modal,
    header,
    footer,
    .thanks-actions,
    .contact-form {
        display: none;
    }
    
    .section {
        padding: 20px 0;
    }
    
    body {
        font-size: 12px;
        line-height: 1.4;
    }
    
    h1 {
        font-size: 18px;
    }
    
    h2 {
        font-size: 16px;
    }
    
    h3 {
        font-size: 14px;
    }
}
