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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #374151;
    background-color: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: #1f2937;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

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

/* Colors */
:root {
    --pine-green: #2D5A3D;
    --graphite: #374151;
    --amber: #F59E0B;
    --light-gray: #f9fafb;
    --medium-gray: #6b7280;
    --dark-gray: #1f2937;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: var(--pine-green);
    color: white;
}

.btn-primary:hover {
    background-color: #1e3a28;
}

.btn-secondary {
    background-color: transparent;
    color: var(--pine-green);
    border-color: var(--pine-green);
}

.btn-secondary:hover {
    background-color: var(--pine-green);
    color: white;
}

/* Placeholder Images */
.placeholder-image {
    background: linear-gradient(135deg, var(--light-gray) 0%, #e5e7eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--medium-gray);
    font-weight: 500;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
}

/* Header */
.header {
    background-color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 48px;
    height: 48px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pine-green);
}

.header-contact .phone {
    font-weight: 600;
    color: var(--graphite);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--pine-green) 0%, #1e3a28 100%);
    color: white;
    padding: 4rem 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero h1 {
    color: white;
    margin-bottom: 1rem;
    font-size: 3rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #d1fae5;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-illustration {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.about-illustration,
.tech-illustration,
.heritage-illustration,
.rental-illustration,
.edu-illustration {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header p {
    font-size: 1.125rem;
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image .placeholder-image {
    height: 350px;
}

/* Services Section */
.services {
    padding: 5rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    text-align: center;
    border: 1px solid #e5e7eb;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Technology Section */
.technology {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.tech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.tech-features {
    list-style: none;
    margin-top: 1.5rem;
}

.tech-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.tech-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--pine-green);
    font-weight: bold;
}

.tech-image .placeholder-image {
    height: 400px;
}

/* Heritage Section */
.heritage {
    padding: 5rem 0;
}

.heritage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.heritage-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    padding: 1rem;
    background-color: var(--light-gray);
    border-radius: 8px;
}

.heritage-image .placeholder-image {
    height: 350px;
}

/* Rental Section */
.rental {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.rental-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.rental-option {
    text-align: center;
}

.rental-image .placeholder-image {
    height: 250px;
    margin-bottom: 1.5rem;
}

/* Products Section */
.products {
    padding: 5rem 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.product-card.featured {
    border-color: var(--amber);
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--amber);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--pine-green);
    margin: 1rem 0;
}

.features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--pine-green);
    font-weight: bold;
}

/* Educational Section */
.educational {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.edu-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.edu-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.edu-option {
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.edu-image .placeholder-image {
    height: 350px;
}

/* Contacts Section */
.contacts {
    padding: 5rem 0;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    min-width: 2rem;
}

.contact-details a {
    color: var(--pine-green);
    text-decoration: none;
    font-weight: 600;
}

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

.contact-hours {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
}

.hours {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.day {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.day:last-child {
    border-bottom: none;
}

.day span {
    font-weight: 600;
    color: var(--pine-green);
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand p {
    color: #9ca3af;
    margin-top: 1rem;
}

.footer-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.footer-contact h4,
.footer-location h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.footer-contact p,
.footer-location p {
    color: #9ca3af;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.footer-contact a {
    color: var(--amber);
    text-decoration: none;
}

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

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
}

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

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
}

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

.footer .brand-name {
    color: white;
}

/* Centered sections */
.centered-section {
    text-align: center;
}

.centered-section .about-grid,
.centered-section .tech-content,
.centered-section .heritage-content,
.centered-section .edu-content {
    text-align: left;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .about-grid,
    .tech-content,
    .heritage-content,
    .rental-grid,
    .edu-content,
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-info {
        grid-template-columns: 1fr 1fr;
    }

    .heritage-features {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card.featured {
        transform: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .hero {
        padding: 2rem 0;
    }

    .section-header,
    .about,
    .services,
    .technology,
    .heritage,
    .rental,
    .products,
    .educational,
    .contacts {
        padding: 3rem 0;
    }
}