* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a5490;
    --secondary-color: #d32f2f;
    --accent-color: #ffc107;
    --text-color: #333;
    --light-bg: #f5f5f5;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
}

.nav-brand {
    flex-shrink: 0;
}

.nav-brand h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
    line-height: 1.2;
}

.nav-brand p {
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 600;
    white-space: nowrap;
}

.nav-logos {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    grid-column: 2;
}

.nav-logos .logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s;
}

.nav-logos .logo:hover {
    transform: scale(1.05);
}

.house-logo {
    max-height: 50px;
}

.apc-logo {
    max-height: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    flex-shrink: 0;
    grid-column: 3;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    margin-left: auto;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c6ba8 100%);
    color: var(--white);
    padding: 1.5rem 0;
    min-height: auto;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 1.5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.hero-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.hero-text h2 {
    font-size: 2.2rem;
    margin-bottom: 0.2rem;
}

.hero-text .subtitle {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
    opacity: 0.9;
    line-height: 1.3;
    white-space: nowrap;
}

.hero-text .district {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-weight: 600;
}

.hero-text .tagline {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

/* Homepage Wrapper for reordering */
.homepage-wrapper {
    display: flex;
    flex-direction: column;
}

/* Highlights Section */
.highlights {
    padding: 1.5rem 0;
    background: var(--light-bg);
}

.highlights h2 {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.highlight-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.highlight-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.highlight-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Mission Section */
.mission {
    padding: 4rem 0;
    background: var(--white);
}

.mission h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.mission-text {
    font-size: 1.2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    color: #555;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c6ba8 100%);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-header .subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.page-header .subtitle-rep {
    font-size: 1rem;
    opacity: 0.85;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* About Page */
.about-content {
    padding: 4rem 0;
    background: var(--white);
}

.profile-section {
    margin-bottom: 4rem;
}

.profile-section h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.profile-text-wrapper {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.profile-image {
    width: auto;
    height: 100%;
    max-width: 40%;
    border-radius: 10px;
    box-shadow: var(--shadow-hover);
    flex-shrink: 0;
    object-fit: contain;
    align-self: stretch;
}

.profile-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.profile-text p {
    margin-bottom: 1.5rem;
    text-align: justify;
    line-height: 1.8;
    font-size: 1.05rem;
    color: #555;
}

.service-section {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.service-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.service-section p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.achievements {
    margin-top: 3rem;
}

.achievements h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
    text-align: center;
}

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

.achievement-item {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.achievement-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Platform Page */
.platform-content {
    padding: 4rem 0;
    background: var(--white);
}

.program-section {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 10px;
    margin-bottom: 2.5rem;
    border-left: 5px solid var(--primary-color);
    box-shadow: var(--shadow);
}

.program-header {
    margin-bottom: 1.5rem;
}

.program-header h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.program-subtitle {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
    font-style: italic;
    margin: 0;
}

.program-intro {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
    font-size: 1.05rem;
}

.program-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
}

.program-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.8;
    color: #555;
    font-size: 1.05rem;
    border-bottom: 1px solid #e0e0e0;
}

.program-list li:last-child {
    border-bottom: none;
}

.program-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.program-list li strong {
    color: var(--text-color);
    font-weight: 600;
}

.program-summary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c6ba8 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 10px;
    margin: 3rem 0;
    text-align: center;
}

.program-summary h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.summary-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.summary-item strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.platform-closing {
    text-align: center;
    padding: 3rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.closing-text {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: 500;
}

.closing-signature {
    font-size: 1.2rem;
    color: var(--primary-color);
    line-height: 1.8;
    margin-top: 2rem;
}

.closing-signature strong {
    font-size: 1.4rem;
    display: block;
    margin-bottom: 0.5rem;
}

.platform-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 2rem;
    color: #555;
}

.full-vision-link {
    margin: 3rem auto 2rem;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 10px;
    border: 2px dashed var(--primary-color);
    text-align: center;
    max-width: 600px;
}

.full-vision-link .btn {
    margin-bottom: 0.5rem;
}

.link-note {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
}

.program-section {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 10px;
    margin-bottom: 2.5rem;
    border-left: 5px solid var(--primary-color);
    box-shadow: var(--shadow);
}

.program-header {
    margin-bottom: 1.5rem;
}

.program-header h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.program-subtitle {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
    font-style: italic;
    margin: 0;
}

.program-intro {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
    font-size: 1.05rem;
}

.program-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
}

.program-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.8;
    color: #555;
    font-size: 1.05rem;
    border-bottom: 1px solid #e0e0e0;
}

.program-list li:last-child {
    border-bottom: none;
}

.program-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.program-list li strong {
    color: var(--text-color);
    font-weight: 600;
}

.program-summary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c6ba8 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 10px;
    margin: 3rem 0;
    text-align: center;
}

.program-summary h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.summary-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.summary-item strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.platform-closing {
    text-align: center;
    padding: 3rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.closing-text {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: 500;
}

.closing-signature {
    font-size: 1.2rem;
    color: var(--primary-color);
    line-height: 1.8;
    margin-top: 2rem;
}

.closing-signature strong {
    font-size: 1.4rem;
    display: block;
    margin-bottom: 0.5rem;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.platform-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.platform-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.platform-card h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.platform-card .program-subtitle {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 1rem;
    display: block;
}

.platform-card p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #555;
    font-size: 0.95rem;
}

.platform-card ul {
    list-style: none;
    padding-left: 0;
}

.platform-card ul li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
}

.platform-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.commitment {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 10px;
    margin-top: 3rem;
}

.commitment h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.commitment p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.commitment-list {
    list-style: none;
    padding-left: 0;
}

.commitment-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.commitment-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Manifesto Page */
.manifesto-content {
    padding: 4rem 0;
    background: var(--white);
}

.manifesto-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

.manifesto-section {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 10px;
    margin-bottom: 2.5rem;
    border-left: 5px solid var(--primary-color);
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.manifesto-section:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.manifesto-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.manifesto-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.manifesto-header h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 0;
}

.manifesto-list {
    list-style: none;
    padding-left: 0;
}

.manifesto-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.8;
    color: #555;
    font-size: 1.05rem;
}

.manifesto-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1.2;
}

.manifesto-list li strong {
    color: var(--text-color);
    font-weight: 600;
}

.manifesto-stand {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c6ba8 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 10px;
    margin: 3rem 0;
    text-align: center;
}

.manifesto-stand h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.stand-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.stand-item {
    font-size: 1.2rem;
    font-weight: 500;
    padding: 0.5rem 0;
}

.manifesto-closing {
    text-align: center;
    padding: 3rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.closing-text {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: 500;
}

.closing-cta {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.6;
    margin: 2rem 0;
}

.closing-cta strong {
    display: inline-block;
}

.closing-signature {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e0e0e0;
}

.signature-name {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.signature-title {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.signature-constituency {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Contact Page */
.contact-content {
    padding: 4rem 0;
    background: var(--white);
}

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

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.contact-info > p {
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #555;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #555;
    line-height: 1.6;
}

.campaign-message {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.campaign-message h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.campaign-message p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.signature {
    font-weight: 600;
    color: var(--primary-color);
    font-style: italic;
    text-align: right;
}

.contact-form-wrapper {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 10px;
}

.contact-form-wrapper h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #666;
}

.form-message {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

.form-message.success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.form-message.error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.form-message p {
    margin: 0;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-logos {
        gap: 0.8rem;
    }

    .nav-logos .logo {
        height: 40px;
    }

    .nav-menu {
        gap: 1rem;
    }

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

    .hero-text {
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .hero-image img {
        max-width: 100%;
    }

    .hero-text h2 {
        font-size: 2.5rem;
    }

    .profile-text-wrapper {
        flex-direction: column;
    }

    .profile-image {
        width: 100%;
        max-width: 400px;
        height: auto;
        margin: 0 auto 2rem;
        display: block;
        align-self: auto;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

    .program-section {
        padding: 2rem 1.5rem;
    }

    .program-header h2 {
        font-size: 1.5rem;
    }

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

    .closing-text {
        font-size: 1.2rem;
    }

    .closing-signature {
        font-size: 1rem;
    }

    .manifesto-section {
        padding: 2rem 1.5rem;
    }

    .manifesto-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .manifesto-header h2 {
        font-size: 1.5rem;
    }

    .manifesto-icon {
        font-size: 2rem;
    }

    .stand-items {
        align-items: flex-start;
        text-align: left;
    }

    .closing-text {
        font-size: 1.2rem;
    }

    .closing-cta {
        font-size: 1.1rem;
    }

    .closing-cta strong {
        white-space: normal;
    }

    .signature-name {
        font-size: 1.2rem;
    }

    .signature-title {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 0;
    }

    .navbar .container {
        grid-template-columns: 1fr auto;
    }

    .nav-brand h1 {
        font-size: 1.25rem;
        margin-bottom: 0.1rem;
    }

    .nav-brand p {
        font-size: 0.75rem;
    }

    .nav-logos {
        display: none;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        grid-column: 1 / -1;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
        grid-column: 2;
    }

    .homepage-wrapper {
        display: flex;
        flex-direction: column;
    }

    .hero {
        padding: 1rem 0;
    }

    .highlights {
        padding: 1rem 0;
    }

    .hero-content {
        gap: 1rem;
    }

    .hero-text h2 {
        font-size: 1.75rem;
        margin-bottom: 0.15rem;
    }

    .hero-text .subtitle {
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
        white-space: normal;
        line-height: 1.2;
    }

    .hero-text .tagline {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }

    .hero-buttons {
        margin-top: 0.5rem;
    }

    .hero-buttons {
        gap: 0.5rem;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .highlights h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .highlight-card {
        padding: 1rem;
    }

    .highlight-card .icon {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }

    .highlight-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .highlight-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .highlight-grid,
    .achievement-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

