:root {

    --phthalo-green: #103713;
    --maximum-green: #628B35;
    --milk: #FFFDF5;
    

    --bg-page: #f4f7f5; 
    --shadow-color: rgba(16, 55, 19, 0.15);
    --line-color: rgba(98, 139, 53, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-page);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--phthalo-green);
    line-height: 1.4;
    margin: 0; 
}

.container-a {
    max-width: 800px;
    width: 100%;
    margin: 60px auto 4rem auto; 
    padding: 0 1.5rem;
}


.main-header {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 6px solid var(--maximum-green);
}

.main-header h1 {
    font-size: 3rem;
    color: var(--phthalo-green);
    font-weight: 700;
    letter-spacing: -1px; 
}

.content-card {
    background-color: var(--milk);
    border-radius: 16px;
    padding: 4rem 3rem;
    box-shadow: 0 10px 30px var(--shadow-color);
    border-top: 4px solid var(--maximum-green);
}

.divider-title {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 2rem 0;
}

.divider-title::before,
.divider-title::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--line-color);
}

.divider-title h2 {
    font-size: 1.4rem;
    color: var(--phthalo-green);
    padding: 0 1.5rem;
    font-weight: 700;
    text-transform: uppercase; 
    letter-spacing: 1px;
}


.recognition-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.vertical-line {
    width: 1px;
    height: 50px;
    background-color: var(--line-color);
}

.recognition-item p {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.sub-text {
    font-size: 1rem;
    opacity: 0.8;
}

.nyt {
    font-style: italic;
    font-weight: 700;
    font-size: 1.15rem;
}

.collection-info {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(to right, transparent, rgba(98,139,53,0.05), transparent);
    border-radius: 8px;
}

.highlight-text {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--phthalo-green);
}


.frost-section {
    margin-top: 4rem;
}

.frost-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.frost-card {
    background-color: #fff;
    border: 1px solid var(--line-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.frost-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow-color);
}

.frost-header {
    padding: 1rem;
    text-align: center;
    color: var(--milk);
}

.frost-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 2px;
}


.header-1985 {
    background-color: var(--maximum-green);
}

.header-1987 {
    background-color: var(--phthalo-green);
}

.frost-details {
    list-style: none;
    padding: 1.5rem;
}

.frost-details li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--line-color);
    font-size: 1.05rem;
    text-align: center;
}

.frost-details li:last-child {
    border-bottom: none;
}


.conclusion {
    margin-top: 4rem;
    text-align: center;
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--phthalo-green);
    padding: 0 2rem;
}

.conclusion strong {
    font-weight: 700;
}


@media (max-width: 768px) {
    .frost-grid {
        grid-template-columns: 1fr;
    }

    .recognition-grid {
        flex-direction: column;
        gap: 1rem;
    }

    .vertical-line {
        width: 50px;
        height: 1px;
    }

    .content-card {
        padding: 2rem 1.5rem;
    }

    .main-header h1 {
        font-size: 2.2rem;
    }
}

.header {
  position: sticky;
  top: 0;
  width: 100%;
  transition: transform 0.4s ease;
  z-index: 1000;
  background-color: #103713;
  
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px; 
}

.nav {
  display: flex;
  gap: 60px; 

  
}

.nav a {
  text-decoration: none;
  color: #fffdf5;
  font-size: 22px; 
  font-weight: 500;
  line-height: 1.2; 
}
.logo img {
    height: 70px; 
    display: block; 
}

.site-footer {
    background-color: #103713; 
    color: #FFFDF5; 

    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    padding: 70px 20px;
    width: 100%;
    box-sizing: border-box;
}


.footer-container {
    display: flex;
    justify-content: center;

    align-items: stretch; 
    max-width: 1000px;
    margin: 0 auto;
    gap: 60px; 
}


.footer-left-section {
    display: flex;
    align-items: flex-start;
    gap: 40px; 
}


.footer-logo {
    width: 80px; 
    height: auto;
    display: block;
}


.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li a {
    color: #FFFDF5; 
    text-decoration: none;
    font-size: 18px;
    font-weight: 500; 
    letter-spacing: 0.3px;
    transition: opacity 0.2s ease;
}

.footer-links li a:hover {
    opacity: 0.7;
}


.footer-divider {
    width: 6px; 
    background-color: #628B35; 
    border-radius: 4px; 
    flex-shrink: 0; 
}


.footer-right-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    padding-top: 5px;
    padding-bottom: 5px;
}

.contact-block {
    margin-bottom: 25px;
}

.contact-block:last-child {
    margin-bottom: 0;
}


.contact-block strong {
    display: block;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
}


.contact-block p, .contact-block a {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
    color: #FFFDF5; 
    text-decoration: none;
    font-weight: 400;
}

.contact-block a:hover {
    text-decoration: underline;
}


.phone-block p {
    margin-bottom: 8px;
}


.light-text {
    font-weight: 300;
    opacity: 0.85;
}


@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .footer-left-section {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

   
    .footer-divider {
        width: 80px;
        height: 6px;
        align-self: center;
    }

    .footer-right-section {
        align-items: center;
    }
}
